Skip to content

Commit

Permalink
Merge branch '1299-single-file-bulk-publish' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Salil Rajkarnikar committed Jan 18, 2024
2 parents 2c2df21 + 6b20706 commit 91a2dbb
Show file tree
Hide file tree
Showing 23 changed files with 18,311 additions and 8,599 deletions.
435 changes: 240 additions & 195 deletions public/css/app.css

Large diffs are not rendered by default.

435 changes: 240 additions & 195 deletions public/css/webportal-app.css

Large diffs are not rendered by default.

20,050 changes: 16,015 additions & 4,035 deletions public/js/app.js

Large diffs are not rendered by default.

341 changes: 262 additions & 79 deletions public/js/formbuilder.js

Large diffs are not rendered by default.

18 changes: 12 additions & 6 deletions public/js/script.js

Large diffs are not rendered by default.

1,084 changes: 891 additions & 193 deletions public/js/vendor.js

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions public/js/webportal-script.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"/js/app.js": "/js/app.js?id=a5b20453d79b831b6727390134d8e28c",
"/js/script.js": "/js/script.js?id=486f329f14e1f080305e7c109ca928ac",
"/js/webportal-script.js": "/js/webportal-script.js?id=fd5980061c5c73a9d216570039251afa",
"/js/formbuilder.js": "/js/formbuilder.js?id=24413ce3f74f3596ccaa1c4ade59f901",
"/js/app.js": "/js/app.js?id=1d621e2b98c8fdf348ed198b8abdd1ad",
"/js/script.js": "/js/script.js?id=4920eb85d84da1e87cb71769c04a12a2",
"/js/webportal-script.js": "/js/webportal-script.js?id=f9c23d4bccd261db9414465886315f45",
"/js/formbuilder.js": "/js/formbuilder.js?id=96f1b9dd5890b8ff09e613117dd94592",
"/manifest.js": "/manifest.js?id=3ed1124c8f4dcb98acc36de67cb80349",
"/css/webportal-app.css": "/css/webportal-app.css?id=d7a1ea82f55a40a6b85fd3f4ec0f7f4c",
"/css/app.css": "/css/app.css?id=08925c8b40a60e425cd8838689896325",
"/js/vendor.js": "/js/vendor.js?id=217ccbf7991cab71072e36f016dae36e"
"/css/webportal-app.css": "/css/webportal-app.css?id=eb6b291271352b3f4efede68dafb8c7d",
"/css/app.css": "/css/app.css?id=a48c028f3dfe5a338c8d2314f5f5e168",
"/js/vendor.js": "/js/vendor.js?id=edbcebc1c4b7cc56d663ef3d704d7655"
}
2 changes: 1 addition & 1 deletion resources/assets/js/components/ActivityDownload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</Modal>
</template>
<script setup lang="ts">
import { inject, computed, onMounted, ref, Ref } from 'vue';
import { inject, computed, ref, Ref } from 'vue';
import spinnerLoader from './spinnerLoader.vue';
import Modal from 'Components/PopupModal.vue';
Expand Down
4 changes: 3 additions & 1 deletion resources/assets/js/components/ActivityValidation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,15 @@ const props = defineProps({
});
const emit = defineEmits(['stopValidation', 'proceed']);
//setting percentage of validation progressbar , to maintain consistency when page is reloaded or navigated
const localStoragePercent = ref(localStorage.getItem('validationPercent'));
const showValidatingList = ref(false);
const hasError = ref(false);
//setting data from local storage to vuex ,to preserve state when window is reloaded
onMounted(() => {
console.log(props.errorTab, 'errortab mounted');
//to check if validation need to be show of not when navigated or refreshed
let showPopup = Boolean(localStorage.getItem('activityValidating'));
if (showPopup) {
store.dispatch('updateStartValidation', true);
Expand Down
Loading

0 comments on commit 91a2dbb

Please sign in to comment.