Skip to content

Commit df3374f

Browse files
committed
Move buttons to outside of scrollable area
1 parent d487620 commit df3374f

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/components/FileOpenSaveDialog.vue

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -81,31 +81,31 @@
8181
{{ error }}
8282
</div>
8383
</v-row>
84-
<v-row class="mt-2">
85-
<v-spacer />
86-
<v-btn
87-
variant="outlined"
88-
class="mx-2"
89-
data-test="file-open-save-cancel-btn"
90-
:disabled="disableButtons"
91-
@click="show = false"
92-
>
93-
Cancel
94-
</v-btn>
95-
<v-btn
96-
ref="submitBtn"
97-
type="submit"
98-
color="primary"
99-
class="mx-2"
100-
data-test="file-open-save-submit-btn"
101-
:disabled="disableButtons || !!error"
102-
@click.prevent="success"
103-
>
104-
{{ submit }}
105-
</v-btn>
106-
</v-row>
10784
</div>
10885
</v-card-text>
86+
<v-card-actions>
87+
<v-spacer />
88+
<v-btn
89+
variant="outlined"
90+
class="mx-2"
91+
data-test="file-open-save-cancel-btn"
92+
:disabled="disableButtons"
93+
@click="show = false"
94+
>
95+
Cancel
96+
</v-btn>
97+
<v-btn
98+
ref="submitBtn"
99+
type="submit"
100+
color="primary"
101+
class="mx-2"
102+
data-test="file-open-save-submit-btn"
103+
:disabled="disableButtons || !!error"
104+
@click.prevent="success"
105+
>
106+
{{ submit }}
107+
</v-btn>
108+
</v-card-actions>
109109
</form>
110110
</v-card>
111111
</v-dialog>

0 commit comments

Comments
 (0)