1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Fixes for release file

This commit is contained in:
David Bomba 2023-07-06 12:50:41 +10:00
parent 5496cefdb8
commit 7dab130ecd
2 changed files with 1 additions and 3 deletions

View File

@ -47,6 +47,7 @@ jobs:
npm i
npm run build
cp -r dist/react/* ../public/react
mkdir -p public/tinymce_6.4.2/tinymce/js/
cp -r node_modules/tinymce ../public/tinymce_6.4.2/tinymce/js/
cd ..
rm -rf ui

View File

@ -192,7 +192,6 @@ class InvoiceItemExport extends BaseExport
if(!$keyval) {
$keyval = $key;
}
nlog($keyval);
if (array_key_exists($key, $transformed_invoice)) {
$entity[$keyval] = $transformed_invoice[$key];
@ -204,8 +203,6 @@ nlog($keyval);
}
}
nlog($entity);
return $this->decorateAdvancedFields($invoice, $entity);
}