This is an automated email from the ASF dual-hosted git repository. vogievetsky pushed a commit to branch better_supervisor_view in repository https://gitbox.apache.org/repos/asf/druid.git
commit bab61e1fd4fd2bea67821621b01a8f92a9fbdea5 Author: Vadim Ogievetsky <[email protected]> AuthorDate: Fri Apr 19 13:50:27 2024 -0700 detail --- web-console/src/views/supervisors-view/supervisors-view.scss | 5 +++++ web-console/src/views/supervisors-view/supervisors-view.tsx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/web-console/src/views/supervisors-view/supervisors-view.scss b/web-console/src/views/supervisors-view/supervisors-view.scss index 6db2b646d95..7b03df4f186 100644 --- a/web-console/src/views/supervisors-view/supervisors-view.scss +++ b/web-console/src/views/supervisors-view/supervisors-view.scss @@ -32,5 +32,10 @@ .title-button { cursor: pointer; } + + .detail-line { + font-style: italic; + opacity: 0.6; + } } } diff --git a/web-console/src/views/supervisors-view/supervisors-view.tsx b/web-console/src/views/supervisors-view/supervisors-view.tsx index 0483cbd2184..6622cc99e11 100644 --- a/web-console/src/views/supervisors-view/supervisors-view.tsx +++ b/web-console/src/views/supervisors-view/supervisors-view.tsx @@ -707,7 +707,7 @@ export class SupervisorsView extends React.PureComponent< return ( <div> <div>{formatInteger(taskCount * replicas)}</div> - <div> + <div className="detail-line"> {replicas === 1 ? '(no replication)' : `(${pluralIfNeeded(taskCount, 'task')} × ${pluralIfNeeded( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
