Skip to content

Commit a471216

Browse files
committed
Enhance layout
1 parent ec85736 commit a471216

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

resources/js/Pages/Jobs/Partials/JobForm.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ const handleClearForm = function () {
545545
// set modal standards
546546
typeModal.value = "warning";
547547
gridColumnModal.value = 2;
548-
titleModal.value = `Are you certain that you want to clear the form?`;
548+
titleModal.value = `Clear the form?`;
549549
descriptionModal.value =
550550
"Are you certain that you want to clear the form? The form will be cleared.";
551551
firstButtonModal.value = "Close";
@@ -2394,7 +2394,7 @@ const pageBuilder = new PageBuilder(store);
23942394
<button
23952395
type="button"
23962396
@click="handleClearForm"
2397-
class="myPrimaryDeleteButton"
2397+
class="text-myPrimaryErrorColor italic text-xs"
23982398
>
23992399
Clear form
24002400
</button>

resources/js/Pages/Posts/Partials/PostForm.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ const handleClearForm = function () {
358358
// set modal standards
359359
typeModal.value = "warning";
360360
gridColumnModal.value = 2;
361-
titleModal.value = `Are you certain that you want to clear the form?`;
361+
titleModal.value = `Clear the form?`;
362362
descriptionModal.value =
363363
"Are you certain that you want to clear the form? The form will be cleared.";
364364
firstButtonModal.value = "Close";
@@ -1297,7 +1297,7 @@ const pageBuilder = new PageBuilder(store);
12971297
<button
12981298
type="button"
12991299
@click="handleClearForm"
1300-
class="myPrimaryDeleteButton"
1300+
class="text-myPrimaryErrorColor italic text-xs"
13011301
>
13021302
Clear form
13031303
</button>

resources/js/Pages/Stores/Partials/StoreForm.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ const handleClearForm = function () {
864864
// set modal standards
865865
typeModal.value = "warning";
866866
gridColumnModal.value = 2;
867-
titleModal.value = `Are you certain that you want to clear the form?`;
867+
titleModal.value = `Clear the form?`;
868868
descriptionModal.value =
869869
"Are you certain that you want to clear the form? The form will be cleared.";
870870
firstButtonModal.value = "Close";
@@ -3138,7 +3138,7 @@ const pageBuilder = new PageBuilder(store);
31383138
<button
31393139
type="button"
31403140
@click="handleClearForm"
3141-
class="myPrimaryDeleteButton"
3141+
class="text-myPrimaryErrorColor italic text-xs"
31423142
>
31433143
Clear form
31443144
</button>

resources/js/Pages/Superadmin/PageBuilder/Components/Partials/ComponentForm.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ const handleClearForm = function () {
285285
// set modal standards
286286
typeModal.value = "warning";
287287
gridColumnModal.value = 2;
288-
titleModal.value = `Are you certain that you want to clear the form?`;
288+
titleModal.value = `Clear the form?`;
289289
descriptionModal.value =
290290
"Are you certain that you want to clear the form? The form will be cleared.";
291291
firstButtonModal.value = "Close";
@@ -876,9 +876,9 @@ const categoriesSorted = computed(() => {
876876
<button
877877
type="button"
878878
@click="handleClearForm"
879-
class="myPrimaryDeleteButton"
879+
class="text-myPrimaryErrorColor italic text-xs"
880880
>
881-
Clear
881+
Clear form
882882
</button>
883883
</template>
884884
<SubmitButton :disabled="postForm.processing" buttonText="Save">

0 commit comments

Comments
 (0)