Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI bugs summary of 1.4.2 #1614

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui_src/src/components/runBenchmarkModal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { LOCAL_STORAGE_BROKER_HOST, LOCAL_STORAGE_ENV, LOCAL_STORAGE_ACCOUNT_ID
let write =
'mem bench producer --message-size 128 --count 1000 --concurrency 1 --host <host> --account-id <account-id(not needed for open-source)> --user <client type user> --password <password>';
let read =
'mem bench consumer --message-size 128 --count 1000 --concurrency 1 --batch-size 50 --host <host> --account-id <account-id(not needed for open-source)> --user <client type user> --password <password>';
'mem bench consumer --message-size 128 --count 1000 --concurrency 1 --batch-size 500 --host <broker_hostname> --account-id <account_id(not needed for open-source)> --user <client_type_username> --password <password>';

const RunBenchmarkModal = ({ open, clickOutside }) => {
const [tabValue, setTabValue] = useState('Windows');
Expand All @@ -40,8 +40,8 @@ const RunBenchmarkModal = ({ open, clickOutside }) => {
: 'memphis.memphis.svc.cluster.local';
write = write.replace('<host>', host);
write = write.replace('<account-id(not needed for open-source)>', parseInt(localStorage.getItem(LOCAL_STORAGE_ACCOUNT_ID)));
read = write.replace('<host>', host);
read = write.replace('<account-id(not needed for open-source)>', parseInt(localStorage.getItem(LOCAL_STORAGE_ACCOUNT_ID)));
read = read.replace('<host>', host);
read = read.replace('<account-id(not needed for open-source)>', parseInt(localStorage.getItem(LOCAL_STORAGE_ACCOUNT_ID)));
setWriteLink(write);
setReadLink(read);
}, []);
Expand Down
20 changes: 20 additions & 0 deletions ui_src/src/dark-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -590,4 +590,24 @@ html.dark-mode {
filter: $color-invert-filter-reverse!important;
}

.stigg-customer-portal-subscriptions-overview {
.MuiBox-root button svg, .MuiBox-root button p {
filter: $color-invert-filter-reverse;
}
}

.message-wrapper .monaco-editor {
padding-top: 15px;
position: relative;
&:after {
position: absolute;
content: '';
background: #fffffe;
height: 100%;
width: 15px;
right: 0;
top: 0;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

.messages-container {
flex: 0 0 40%;
flex: 0 0 36%;
height: 71vh;
min-height: 580px;
box-shadow: 0px 0px 4px 3px rgba(204, 204, 204, 0.19);
Expand Down
6 changes: 2 additions & 4 deletions ui_src/src/domain/stationOverview/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
flex-direction: column;
justify-content: space-between;
gap: 30px;
height: 100%;
.overview-header {
min-width: 1370px;
min-width: 1300px;
}
.station-observability {
min-width: 900px;
Expand All @@ -18,9 +19,6 @@
flex-direction: column;
justify-content: center;
width: 100%;
@media (max-width: 1200px) {
width: calc(100% - 2vw - var(--main-container-sidebar-width));
}
}
.overview-top {
display: flex;
Expand Down