#7648 - CustomerView labeler #505

Merged
jsegarra merged 23 commits from 7648_dev_customerEntries into dev 2024-07-03 06:39:04 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit aa2885e6ca - Show all commits

View File

@ -80,7 +80,7 @@ export const useNavigationStore = defineStore('navigationStore', () => {
}
async function fetchPinned() {
if (pinnedModules.value.length || !role.isEmployee()) return;
if (pinnedModules.value.length) return;
jsegarra marked this conversation as resolved Outdated

eliminar condicion y modificar acl back

eliminar condicion y modificar acl back
const response = await axios.get('StarredModules/getStarredModules');
pinnedModules.value = response.data.map((row) => row.moduleFk);