diff --git a/public/index.html b/public/index.html
index 3f6d63a..3c99859 100644
--- a/public/index.html
+++ b/public/index.html
@@ -7,7 +7,6 @@
IT Asset Management - Essential JS 2 for Vue - Syncfusion
-
diff --git a/src/App.vue b/src/App.vue
index 97af97c..f229983 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -486,8 +486,8 @@ import { SidebarComponent as EjsSidebar } from '@syncfusion/ej2-vue-navigations'
import { ListViewComponent as EjsListview } from '@syncfusion/ej2-vue-lists';
import { enableRipple, Browser, L10n } from '@syncfusion/ej2-base';
import { ToastComponent as EjsToast } from '@syncfusion/ej2-vue-notifications';
-import Notification from '@/components/NotificationTemplate';
-import { createApp, ref } from "vue";
+import Notification from './components/NotificationTemplate';
+import { createApp, ref, provide } from "vue";
import { useRouter } from 'vue-router';
import { useStore } from 'vuex';
@@ -627,4 +627,6 @@ function toggleNotify() {
notifybarObj.value.toggle();
notifyBellClicked = true;
}
+
+provide('updatePendingRequests', updatePendingRequests);
\ No newline at end of file
diff --git a/src/components/ActivityTemplate.vue b/src/components/ActivityTemplate.vue
index f406321..6657485 100644
--- a/src/components/ActivityTemplate.vue
+++ b/src/components/ActivityTemplate.vue
@@ -38,7 +38,13 @@
{{data.Message}}
-
\ No newline at end of file
diff --git a/src/components/AllIssuedLicenses.vue b/src/components/AllIssuedLicenses.vue
index 0e57397..d8893d3 100644
--- a/src/components/AllIssuedLicenses.vue
+++ b/src/components/AllIssuedLicenses.vue
@@ -95,7 +95,7 @@ function editToolClicked(args) {
}
let rowObj = gridObj.value.ej2Instances.getRowObjectFromUID(rows.getAttribute('data-uid'));
rowData.value = rowObj.data;
- dlgShow.value = !this.dlgShow;
+ dlgShow.value = !dlgShow.value;
}
}
function editBtnClick(args) {
diff --git a/src/components/AllRequests.vue b/src/components/AllRequests.vue
index dc82e0b..a4b91f4 100644
--- a/src/components/AllRequests.vue
+++ b/src/components/AllRequests.vue
@@ -35,7 +35,7 @@