Skip to content

Commit

Permalink
Use info icon for global import/export tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
dchiquito committed Dec 2, 2021
1 parent edd3746 commit 7d4d7ff
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions client/src/components/ProjectSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,19 +125,23 @@ export default defineComponent({
</v-flex>
</v-layout>
<v-layout>
<v-switch
v-model="globalImportExport"
@click="changed = true"
color="primary"
label="Global import/export"
/>
<v-tooltip top>
<template v-slot:activator="{ on, attrs }">
<div
<v-icon
v-bind="attrs"
v-on="on"
color="primary"
small
class="mx-1"
>
<v-switch
v-model="globalImportExport"
@click="changed = true"
color="primary"
label="Global import/export"
/>
</div>
mdi-information-outline
</v-icon>
</template>
Global imports/exports will use the project name from the import file, which will
potentially modify other projects.
Expand Down

0 comments on commit 7d4d7ff

Please sign in to comment.