Skip to content
Snippets Groups Projects
Unverified Commit a951668d authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Avoid prop shorthand in query download widget (#17611)

parent bf2ba1f3
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ const QueryDownloadWidget = ({
>
<Box
p={2}
w={result.data && result.data.rows_truncated != null ? 300 : 260}
width={result.data && result.data.rows_truncated != null ? 300 : 260}
>
<Box p={1}>
<h4>{t`Download full results`}</h4>
......@@ -55,7 +55,7 @@ const QueryDownloadWidget = ({
)}
<Box>
{EXPORT_FORMATS.map(type => (
<Box key={type} w={"100%"}>
<Box key={type} width={"100%"}>
{dashcardId && token ? (
<DashboardEmbedQueryButton
key={type}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment