File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ const RunPipeResults: FC = () => {
6464const ReadOnly : FC = ( { children} ) => {
6565 const { flow} = useContext ( FlowContext )
6666 const params = useParams < { accessID : string } > ( )
67- if ( ! params . accessID || params . accessID . length !== 16 || ! flow ) {
67+ if ( ! params . accessID || ! flow ) {
6868 return (
6969 < div style = { { width : '100%' } } >
7070 < NotFound />
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ const FlowHeader: FC = () => {
205205 icon = { IconFont . Share }
206206 onClick = { showShare }
207207 color = {
208- ! share ? ComponentColor . Primary : ComponentColor . Secondary
208+ ! ! share ? ComponentColor . Primary : ComponentColor . Secondary
209209 }
210210 titleText = "Share Notebook"
211211 />
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const QueryBuilder: FC<PipeProp> = ({Context}) => {
3737 icon = { IconFont . BucketSolid }
3838 status = { ComponentStatus . Disabled }
3939 >
40- { data . buckets [ 0 ] ?? 'No Bucket Selected' }
40+ { data . buckets [ 0 ] . name ?? 'No Bucket Selected' }
4141 </ Dropdown . Button >
4242 ) }
4343 menu = { onCollapse => (
You can’t perform that action at this time.
0 commit comments