Skip to content

Commit 7766b77

Browse files
author
Gene Hynson
authored
fix(notebooks): squash some bugs (#3147)
1 parent 44d6311 commit 7766b77

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

assets/images/Alert.png

-17.3 KB
Loading

assets/images/Task.png

-19.2 KB
Loading

src/flows/components/FlowsIndex.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ const FlowsIndex = () => {
137137
onSelect={setSort}
138138
/>
139139
</Page.ControlBarLeft>
140+
<Page.ControlBarRight />
140141
</Page.ControlBar>
141142
</>
142143
)}
@@ -167,6 +168,7 @@ const FlowsIndex = () => {
167168
onSelect={setSort}
168169
/>
169170
</Page.ControlBarLeft>
171+
<Page.ControlBarRight />
170172
</Page.ControlBar>
171173
</Page.Contents>
172174

src/flows/components/PresetFlows.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,22 @@ h3 {
5454

5555
.flows-index--presetCard:nth-child(2) .flows-index--presetButton {
5656
background-image: url('../../../assets/images/Alert.png');
57-
background-size: contain;
57+
background-size: cover;
5858
}
5959

6060
.flows-index--presetCard:nth-child(3) .flows-index--presetButton {
6161
background-image: url('../../../assets/images/Task.png');
62-
background-size: contain;
62+
background-size: cover;
6363
}
6464

6565
.flows-index--presetCard:nth-child(4) .flows-index--presetButton {
6666
background-image: url('../../../assets/images/Flux.png');
67-
background-size: contain;
67+
background-size: cover;
6868
}
6969

7070
.flows-index--presetCard:nth-child(5) .flows-index--presetButton {
7171
background-image: url('../../../assets/images/BlankFlow.png');
72-
background-size: contain;
72+
background-size: cover;
7373
}
7474

7575
@media screen and (max-width: $cf-grid--breakpoint-md) {

src/flows/components/controlSearchBar.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
.cf-page-control-bar--fixed {
33
padding: 0px;
44
}
5-
.cf-dropdown-menu {
6-
max-width: 210px;
7-
}
85
}
96

107
.buttonMode {

src/flows/pipes/Notification/Threshold.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const Threshold: FC<Props> = ({readOnly}) => {
222222
!!readOnly ? ComponentStatus.Disabled : ComponentStatus.Default
223223
}
224224
>
225-
{threshold?.field || 'Select a numeric column'}
225+
{threshold?.field || 'Select a numeric field'}
226226
</Dropdown.Button>
227227
)
228228
return <Dropdown menu={menu} button={menuButton} />

0 commit comments

Comments
 (0)