do not leave index.html in /public

This commit is contained in:
David Bomba 2024-06-28 09:40:40 +10:00
parent 2b1e0e0e69
commit ecfa558bf3
2 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,7 @@ jobs:
npm i
npm run build
cp -r dist/* ../public/
cp dist/index.html ../resources/views/react/index.blade.php
mv dist/index.html ../resources/views/react/index.blade.php
- name: Prepare JS/CSS assets
run: |

View File

@ -379,6 +379,7 @@ class BaseRule implements RuleInterface
public function override($item): self
{
nlog("override");
$this->tax_rate1 = $item->tax_rate1;
$this->tax_name1 = $item->tax_name1;
$this->tax_rate2 = $item->tax_rate2;
@ -386,6 +387,7 @@ class BaseRule implements RuleInterface
$this->tax_rate3 = $item->tax_rate3;
$this->tax_name3 = $item->tax_name3;
nlog($item);
return $this;
}