Skip to content

Commit

Permalink
Set default sizes of g-dialog components
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerkoser committed Aug 9, 2021
1 parent 194a21a commit 5268fba
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/ShootVersion/ShootVersion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ SPDX-License-Identifier: Apache-2.0
:error-message.sync="updateErrorMessage"
:detailed-error-message.sync="updateDetailedErrorMessage"
ref="gDialog"
width="450"
>
<template v-slot:caption>Update Cluster</template>
<template v-slot:affectedObjectName>{{shootName}}</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SPDX-License-Identifier: Apache-2.0
<g-dialog
confirm-button-text="Create"
:confirm-disabled="!valid"
width="750px"
width="750"
max-height="100vh"
ref="gDialog"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/dialogs/TerminalSettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SPDX-License-Identifier: Apache-2.0
<g-dialog
confirm-button-text="Change"
:confirm-disabled="!validSettings"
width="750px"
width="750"
max-height="100vh"
ref="gDialog"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SPDX-License-Identifier: Apache-2.0
<template>
<g-dialog
confirm-button-text="Confirm"
width="750px"
width="750"
max-height="100vh"
ref="gDialog"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SPDX-License-Identifier: Apache-2.0
<template>
<g-dialog
:confirm-button-text="confirmButtonText"
width="750px"
width="750"
max-height="100vh"
ref="gDialog"
>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/views/Administration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ SPDX-License-Identifier: Apache-2.0
<g-dialog
:error-message.sync="errorMessage"
:detailed-error-message.sync="detailedErrorMessage"
ref="gDialog">
ref="gDialog"
width="600">
<template v-slot:caption>
Confirm Delete
</template>
Expand Down

0 comments on commit 5268fba

Please sign in to comment.