File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
import gql from "graphql-tag" ;
2
- import mappingsFragment from "../gql /fragments/mappings" ;
3
- import { moduleToString } from "../tailwind-components/utils/moduleToString" ;
2
+ import mappingsFragment from "./fragments/mappings" ;
3
+ import { moduleToString } from "../../ tailwind-components/utils/moduleToString" ;
4
4
export default gql `
5
5
query Variables(
6
6
$variableFilter:VariablesFilter,
Original file line number Diff line number Diff line change 66
66
</template >
67
67
68
68
<script setup lang="ts">
69
- import type { EditUserModal , NewUserModal } from " #build/components" ;
70
69
import { definePageMeta } from " #imports" ;
71
- import { ref , computed } from " vue" ;
70
+ import { computed , ref } from " vue" ;
72
71
import {
73
72
createUser ,
74
73
deleteUser ,
@@ -92,7 +91,7 @@ definePageMeta({
92
91
});
93
92
94
93
const LIMIT = 100 ;
95
- const showEditUserModal = ref (false )
94
+ const showEditUserModal = ref (false );
96
95
const showNewUserModal = ref (false );
97
96
const selectedUser = ref <IUser | null >(null );
98
97
You can’t perform that action at this time.
0 commit comments