We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e319c91 commit 5fde99cCopy full SHA for 5fde99c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "sub-store-front-end",
3
- "version": "2.15.6",
+ "version": "2.15.7",
4
"private": true,
5
"scripts": {
6
"dev": "vite --host",
src/views/FileEditor.vue
@@ -378,6 +378,7 @@
378
</template>
379
380
<script lang="ts" setup>
381
+import { useArtifactsStore } from "@/store/artifacts";
382
import logoIcon from "@/assets/icons/logo.png";
383
import logoRedIcon from "@/assets/icons/logo-red.png";
384
import { useSubsApi } from "@/api/subs";
@@ -710,6 +711,7 @@ const submit = () => {
710
711
await subsStore.updateOneData("files", configName);
712
} else {
713
await subsStore.fetchSubsData();
714
+ await useArtifactsStore().fetchArtifactsData();
715
}
716
717
0 commit comments