Skip to content
Snippets Groups Projects
Commit 3424f718 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix no_results image paths

parent 5db449c6
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ export const GenericError = ({
export const NotFound = () => (
<ErrorPageWrapper>
<EmptyState
illustrationElement={<img src="../app/assets/img/no_results.svg" />}
illustrationElement={<img src="app/assets/img/no_results.svg" />}
title={t`We're a little lost...`}
message={t`The page you asked for couldn't be found.`}
link={Urls.question()}
......
......@@ -88,7 +88,7 @@ const ColumnSettings = ({
) : (
<EmptyState
message={t`No formatting settings`}
illustrationElement={<img src="../app/assets/img/no_results.svg" />}
illustrationElement={<img src="app/assets/img/no_results.svg" />}
/>
)}
</div>
......
......@@ -467,7 +467,7 @@ export default class Visualization extends Component {
}
>
<Tooltip tooltip={t`No results!`} isEnabled={small}>
<img src="../app/assets/img/no_results.svg" />
<img src="app/assets/img/no_results.svg" />
</Tooltip>
{!small && <span className="h4 text-bold">No results!</span>}
</div>
......
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