mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Added tooltip to buttons (#1132)
This commit is contained in:
parent
94f614918e
commit
0605f97a21
1 changed files with 2 additions and 0 deletions
|
|
@ -612,6 +612,7 @@ class Editor extends React.Component {
|
|||
<button
|
||||
type="button"
|
||||
className="btn btn-light"
|
||||
data-tip="Desktop view"
|
||||
onClick={() => this.setState({ currentLayout: 'desktop' })}
|
||||
disabled={currentLayout === 'desktop'}
|
||||
>
|
||||
|
|
@ -620,6 +621,7 @@ class Editor extends React.Component {
|
|||
<button
|
||||
type="button"
|
||||
className="btn btn-light"
|
||||
data-tip="Mobile view"
|
||||
onClick={() => this.setState({ currentLayout: 'mobile' })}
|
||||
disabled={currentLayout === 'mobile'}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue