최동원

error fix

...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
94 </v-card> 94 </v-card>
95 </v-dialog> 95 </v-dialog>
96 <!-- file share menu --> 96 <!-- file share menu -->
97 - <v-dialog v-model="showShareF"> 97 + <v-dialog v-model="showShareF" width="500px">
98 <v-card> 98 <v-card>
99 <v-card-title> 99 <v-card-title>
100 Share File 100 Share File
...@@ -108,11 +108,11 @@ ...@@ -108,11 +108,11 @@
108 label="target user id" 108 label="target user id"
109 ></v-text-field> 109 ></v-text-field>
110 </v-card-text> 110 </v-card-text>
111 - <v-card-cation> 111 + <v-card-actions>
112 <v-spacer></v-spacer> 112 <v-spacer></v-spacer>
113 <v-btn @click.prevent="file_share">ok</v-btn> 113 <v-btn @click.prevent="file_share">ok</v-btn>
114 <v-btn @click="showShareF = false">cancle</v-btn> 114 <v-btn @click="showShareF = false">cancle</v-btn>
115 - </v-card-cation> 115 + </v-card-actions>
116 </v-card> 116 </v-card>
117 </v-dialog> 117 </v-dialog>
118 <!-- Move Folder --> 118 <!-- Move Folder -->
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
275 <v-list-item-title>즐겨 찾기 추가</v-list-item-title> 275 <v-list-item-title>즐겨 찾기 추가</v-list-item-title>
276 </v-list-item-content> 276 </v-list-item-content>
277 </v-list-item> 277 </v-list-item>
278 - <v-list-item @click.prevent="showShareF != showShareF"> 278 + <v-list-item @click.prevent="showShareF = !showShareF">
279 <v-list-item-icon> 279 <v-list-item-icon>
280 <v-icon>fas fa-share-alt</v-icon> 280 <v-icon>fas fa-share-alt</v-icon>
281 </v-list-item-icon> 281 </v-list-item-icon>
......
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
95 </v-card> 95 </v-card>
96 </v-dialog> 96 </v-dialog>
97 <!-- file share menu --> 97 <!-- file share menu -->
98 - <v-dialog v-model="showShareF"> 98 + <v-dialog v-model="showShareF" width="500px">
99 <v-card> 99 <v-card>
100 <v-card-title> 100 <v-card-title>
101 Share File 101 Share File
...@@ -109,11 +109,11 @@ ...@@ -109,11 +109,11 @@
109 label="target user id" 109 label="target user id"
110 ></v-text-field> 110 ></v-text-field>
111 </v-card-text> 111 </v-card-text>
112 - <v-card-cation> 112 + <v-card-actions>
113 <v-spacer></v-spacer> 113 <v-spacer></v-spacer>
114 <v-btn @click.prevent="file_share">ok</v-btn> 114 <v-btn @click.prevent="file_share">ok</v-btn>
115 <v-btn @click="showShareF = false">cancle</v-btn> 115 <v-btn @click="showShareF = false">cancle</v-btn>
116 - </v-card-cation> 116 + </v-card-actions>
117 </v-card> 117 </v-card>
118 </v-dialog> 118 </v-dialog>
119 <!-- Move Folder --> 119 <!-- Move Folder -->
...@@ -188,14 +188,6 @@ ...@@ -188,14 +188,6 @@
188 <v-list-item-title>즐겨 찾기 추가</v-list-item-title> 188 <v-list-item-title>즐겨 찾기 추가</v-list-item-title>
189 </v-list-item-content> 189 </v-list-item-content>
190 </v-list-item> 190 </v-list-item>
191 - <v-list-item>
192 - <v-list-item-icon>
193 - <v-icon>fas fa-share-alt</v-icon>
194 - </v-list-item-icon>
195 - <v-list-item-content>
196 - <v-list-item-title>공유 하기</v-list-item-title>
197 - </v-list-item-content>
198 - </v-list-item>
199 </v-list> 191 </v-list>
200 </v-menu> 192 </v-menu>
201 <!-- --> 193 <!-- -->
...@@ -281,7 +273,7 @@ ...@@ -281,7 +273,7 @@
281 <v-list-item-title>즐겨 찾기 추가</v-list-item-title> 273 <v-list-item-title>즐겨 찾기 추가</v-list-item-title>
282 </v-list-item-content> 274 </v-list-item-content>
283 </v-list-item> 275 </v-list-item>
284 - <v-list-item @click.prevent="showShareF != showShareF"> 276 + <v-list-item @click.prevent="showShareF = !showShareF">
285 <v-list-item-icon> 277 <v-list-item-icon>
286 <v-icon>fas fa-share-alt</v-icon> 278 <v-icon>fas fa-share-alt</v-icon>
287 </v-list-item-icon> 279 </v-list-item-icon>
......