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

Custom expression editor: avoid being too wide in a sidebar (#15403)

The width should be fixed only when the editor is being used in the
notebook, and not from the sidebar.
parent fdf9a467
No related branches found
No related tags found
No related merge requests found
.PopoverBody .ExpressionPopover {
width: 498px;
}
......@@ -6,6 +6,8 @@ import Button from "metabase/components/Button";
import { t } from "ttag";
import Icon from "metabase/components/Icon";
import "./ExpressionPopover.css";
// TODO: combine with ExpressionWidget
export default class ExpressionPopover extends React.Component {
state = {
......@@ -30,7 +32,7 @@ export default class ExpressionPopover extends React.Component {
const isValid = !error && (!onChangeName || name);
return (
<div style={{ width: 498 }}>
<div className="ExpressionPopover">
<div className="text-medium p1 py2 border-bottom flex align-center">
<a className="cursor-pointer flex align-center" onClick={onBack}>
<Icon name="chevronleft" size={18} />
......
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