Skip to content

Commit

Permalink
Update AdvancedMap.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Sep 13, 2024
1 parent fa9347f commit 3e2c42c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/src/modules/map/components/AdvancedMap.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div style="height: 100%">
<v-navigation-drawer
v-model="sidebarVisible"
absolute
temporary
v-model="sidebarVisible"
width="400"
>
<v-tabs
Expand Down Expand Up @@ -105,8 +105,6 @@ export default {
mounted: function () {
let parent = this;
console.log('MOUNT');
this.loadToken().then((resp) => {
loadModules(
[
Expand Down Expand Up @@ -144,6 +142,8 @@ export default {
token: resp.access_token,
});
console.log('INTERCEPTOR FOR', `${MAPS_URL}/sites`);
config.request.interceptors.push({
urls: `${MAPS_URL}/sites`,
before: function (params) {
Expand Down

0 comments on commit 3e2c42c

Please sign in to comment.