Skip to content

Commit 46c00e1

Browse files
committed
Rename requestLoaderDialog to curlCommandLoaderDialog for clarity
1 parent cc32f2b commit 46c00e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/App.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<VListItem title="From tab (default)" @click="load" />
2020
<VListItem
2121
title="From cURL command"
22-
@click="requestLoaderDialog.show = true"
22+
@click="curlCommandLoaderDialog.show = true"
2323
/>
2424
</VList>
2525
</VMenu>
@@ -77,8 +77,8 @@
7777
</VMain>
7878
<DialogReloadPrompt v-model="reloadDialog" />
7979
<DialogRequestLoader
80-
v-if="requestLoaderDialog.show"
81-
v-model="requestLoaderDialog"
80+
v-if="curlCommandLoaderDialog.show"
81+
v-model="curlCommandLoaderDialog"
8282
/>
8383
<DialogSqlInjectionSetting v-model="sqlInjectionDialog" />
8484
<DialogReverseShellSetting v-model="reverseShellDialog" />
@@ -183,7 +183,7 @@ export default defineComponent({
183183
const reloadDialog = ref({
184184
show: false,
185185
})
186-
const requestLoaderDialog = ref({
186+
const curlCommandLoaderDialog = ref({
187187
show: false,
188188
})
189189
const sqlInjectionDialog = ref({
@@ -570,7 +570,7 @@ export default defineComponent({
570570
theme,
571571
572572
reloadDialog,
573-
requestLoaderDialog,
573+
curlCommandLoaderDialog,
574574
sqlInjectionDialog,
575575
reverseShellDialog,
576576
customPayloadDialog,

0 commit comments

Comments
 (0)