This commit is contained in:
j3d1 2026-09-06 04:28:45 +02:00
parent aef6677736
commit d553b8dd53
6 changed files with 9 additions and 45838 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -4,6 +4,7 @@ import {BootstrapIconsPlugin} from 'bootstrap-icons-vue';
import App from './App.vue' import App from './App.vue'
import './scss/toolshed.scss' import './scss/toolshed.scss'
//import 'bootstrap'
import router from './router' import router from './router'
import store from './store'; import store from './store';

View file

@ -7,7 +7,7 @@
} }
.card-header { .card-header {
background-color: map-get($theme-colors, background-1); /* background-color: map-get($theme-colors, background-1);*/
border-bottom: 0 solid transparent; border-bottom: 0 solid transparent;
padding: 1rem 1.25rem; padding: 1rem 1.25rem;
} }

View file

@ -9663,6 +9663,7 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
</template> </template>
<script> <script>
import $ from "jquery";
import {mapActions, mapState} from "vuex"; import {mapActions, mapState} from "vuex";
import * as BIcons from "bootstrap-icons-vue"; import * as BIcons from "bootstrap-icons-vue";
import BaseLayout from "@/components/BaseLayout.vue"; import BaseLayout from "@/components/BaseLayout.vue";
@ -9682,6 +9683,12 @@ export default {
async mounted() { async mounted() {
await this.fetchInfo(); await this.fetchInfo();
await this.fetchStorageLocations(); await this.fetchStorageLocations();
// Bootstrap's tooltip/popover plugins are opt-in and don't auto-init from
// data-toggle the way dropdown/modal/collapse/carousel/tab/alert do.
this.$nextTick(() => {
$(this.$el).find('[data-toggle="tooltip"]').tooltip();
$(this.$el).find('[data-toggle="popover"]').popover();
});
} }
} }
</script> </script>