Skip to content

Commit

Permalink
addressed PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: sumukhswamy <[email protected]>
  • Loading branch information
sumukhswamy committed Aug 16, 2023
1 parent 4787fc9 commit 12fb14e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,6 @@
overflow-y: unset;
}

.dscSidebar__item{
.sidebar_content{
white-space: nowrap;
}
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export const Sidebar = (props: ISidebarProps) => {
},
[explorerFields, tabId]
);
console.log('sidebar ',isOverridingPattern)

return (
<I18nProvider>
Expand Down Expand Up @@ -153,7 +152,7 @@ export const Sidebar = (props: ISidebarProps) => {
<li
key={`field${field.name}`}
data-attr-field={field.name}
className="dscSidebar__item"
className="dscSidebar__item sidebar_content"
>
<Field
query={query}
Expand Down Expand Up @@ -200,7 +199,7 @@ export const Sidebar = (props: ISidebarProps) => {
<li
key={`field${field.name}`}
data-attr-field={field.name}
className="dscSidebar__item"
className="dscSidebar__item sidebar_content"
>
<Field
query={query}
Expand Down Expand Up @@ -248,7 +247,7 @@ export const Sidebar = (props: ISidebarProps) => {
<li
key={`field${field.name}`}
data-attr-field={field.name}
className="dscSidebar__item"
className="dscSidebar__item sidebar_content"
>
<Field
query={query}
Expand Down

0 comments on commit 12fb14e

Please sign in to comment.