Skip to content

Commit

Permalink
icon changed for wuery loader
Browse files Browse the repository at this point in the history
Signed-off-by: sumukhswamy <sumukhhs@amazon.com>
  • Loading branch information
sumukhswamy committed Oct 30, 2023
1 parent d799af7 commit f4b6c56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions public/components/Main/__snapshots__/main.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ exports[`<Main /> spec click clear button 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -2297,7 +2297,7 @@ exports[`<Main /> spec click run button, and response causes an error 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -2860,7 +2860,7 @@ exports[`<Main /> spec click run button, and response is not ok 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -4964,7 +4964,7 @@ exports[`<Main /> spec click run button, and response is ok 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -5598,7 +5598,7 @@ exports[`<Main /> spec click run button, response fills null and missing values
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -6231,7 +6231,7 @@ exports[`<Main /> spec click translation button, and response is ok 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down Expand Up @@ -8326,7 +8326,7 @@ exports[`<Main /> spec renders the component 1`] = `
>
<div
class="euiPageSideBar"
style="max-width: 400px; width: 400px; height: auto;"
style="max-width: 400px; width: 400px; height: calc(100vh - 254px);"
>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down
2 changes: 1 addition & 1 deletion public/components/SQLPage/table_view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ export const TableView = ({ http, selectedItems, updateSQLQueries, refreshTree }
{node.isLoading && <EuiLoadingSpinner size="m" />}
{node.type === TREE_ITEM_TABLE_NAME_DEFAULT_NAME && !node.isLoading && (
<EuiIcon
type="play"
type="editorCodeBlock"
onClick={(e) => handleQuery(e,parentName,node.name)}
></EuiIcon>
)}
Expand Down

0 comments on commit f4b6c56

Please sign in to comment.