Skip to content

Commit 77ee7c2

Browse files
committed
1.3.0
1 parent 87d54b0 commit 77ee7c2

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

api/src/main/java/io/kafbat/ui/service/ConsumerGroupService.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ private Mono<List<ConsumerGroupDescription>> loadSortedDescriptions(ReactiveAdmi
149149
case EMPTY -> 3;
150150
case DEAD -> 4;
151151
case UNKNOWN -> 5;
152-
case ASSIGNING -> 6;
153-
case RECONCILING -> 7;
154152
};
155153
var comparator = Comparator.comparingInt(statesPriorities);
156154
yield loadDescriptionsByListings(ac, groups, comparator, pageNum, perPage, sortOrderDto);

frontend/src/components/Nav/Menu/styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const ContentWrapper = styled.div`
5353
`;
5454

5555
export const Title = styled.div`
56-
width: 100%;
56+
max-width: ${({ theme }) => Number(theme.layout.navBarWidth.replaceAll('px', '')) - 80 + "px"};
5757
`;
5858

5959
export const StatusIconWrapper = styled.svg.attrs({

frontend/src/components/common/Editor/Editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const Editor = React.forwardRef<AceEditor | null, EditorProps>((props, ref) => {
3131
? `${(props.value?.split('\n').length || 32) * 19}px`
3232
: '372px'
3333
}
34-
wrapEnabled
34+
wrapEnabled={false}
3535
{...rest}
3636
/>
3737
);

frontend/src/theme/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ const baseTheme = {
203203
},
204204
layout: {
205205
minWidth: '1200px',
206-
navBarWidth: '240px',
206+
navBarWidth: '280px',
207207
navBarHeight: '51px',
208208
rightSidebarWidth: '70vw',
209209
filtersSidebarWidth: '300px',

0 commit comments

Comments
 (0)