Skip to content

Commit

Permalink
Merge pull request #27 from cloudblue/feature/LITE-28918
Browse files Browse the repository at this point in the history
LITE-28918 - modified styling to fit on screen
  • Loading branch information
vgrebenschikov authored Oct 26, 2023
2 parents a552459 + cb62a2c commit d5ef548
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 55 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion connect_ext_datalake/static/settings.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html><head><meta charset="utf-8"/><title>Settings</title><script defer="defer" src="vendors.0f4f3744651ffacaac98.js"></script><script defer="defer" src="settings.6d02647ed1f1d8c780e5.js"></script><link href="settings.afd254c290f3915c8608.css" rel="stylesheet"></head><body><div id="app"></div></body></html>
<!doctype html><html><head><meta charset="utf-8"/><title>Settings</title><script defer="defer" src="vendors.0f4f3744651ffacaac98.js"></script><script defer="defer" src="settings.f49b9099d7f40c3af3dd.js"></script><link href="settings.c392c4ff80f2a08d4842.css" rel="stylesheet"></head><body><div id="app"></div></body></html>
2 changes: 1 addition & 1 deletion ui/src/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default {
<style scoped>
.app {
box-sizing: border-box;
min-height: 640px;
min-height: 740px;
padding-top: 24px;
}
Expand Down
1 change: 1 addition & 0 deletions ui/src/components/PubCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,7 @@ textarea[materialize].code:not(:last-child) {
.account-json-wrapper {
position: relative;
margin-bottom: 24px;
}
.menu-items {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/scripts/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const syncTranslations = () => fetch('/api/localization/translations/*/pu
method: 'POST',
});

export const validateSettings = (hubId) => fetch(`/api/settings/validate/${hubId}`).then(getJson);
export const validateSettings = (hubId) => fetch(`/api/settings/${hubId}/validate`).then(getJson);

export const updateSettings = (hubId, settings) => fetch(`/api/settings/${hubId}`, {
method: 'POST',
Expand Down
4 changes: 2 additions & 2 deletions ui/src/styles/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ input[type="password"] {
top: 48px;
left: 50%;
width: 580px;
max-height: 580px;
max-height: 654px;
overflow-y: auto;
padding: 0;
border-radius: 4px;
Expand Down Expand Up @@ -773,7 +773,7 @@ input[type="password"] {
.ez-dialog__content {
position: relative;
padding: 24px;
max-height: 400px;
max-height: 540px;
overflow: auto;
}

Expand Down

0 comments on commit d5ef548

Please sign in to comment.