mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 16:58:47 +01:00
More adaptive copy
This commit is contained in:
parent
7ab6da5e9b
commit
0db10bf7d0
1 changed files with 8 additions and 2 deletions
|
@ -392,7 +392,11 @@ function ShortcutsSettings({ onClose }) {
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<div class="ui-state insignificant">
|
<div class="ui-state insignificant">
|
||||||
<p>No shortcuts yet. Tap on the Add shortcut button.</p>
|
<p>
|
||||||
|
{snapStates.settings.shortcutsViewMode === 'multi-column'
|
||||||
|
? 'No columns yet. Tap on the Add column button.'
|
||||||
|
: 'No shortcuts yet. Tap on the Add shortcut button.'}
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Not sure what to add?
|
Not sure what to add?
|
||||||
<br />
|
<br />
|
||||||
|
@ -419,7 +423,9 @@ function ShortcutsSettings({ onClose }) {
|
||||||
)}
|
)}
|
||||||
<p class="insignificant">
|
<p class="insignificant">
|
||||||
{shortcuts.length >= SHORTCUTS_LIMIT &&
|
{shortcuts.length >= SHORTCUTS_LIMIT &&
|
||||||
`Max ${SHORTCUTS_LIMIT} shortcuts`}
|
(snapStates.settings.shortcutsViewMode === 'multi-column'
|
||||||
|
? `Max ${SHORTCUTS_LIMIT} columns`
|
||||||
|
: `Max ${SHORTCUTS_LIMIT} shortcuts`)}
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
style={{
|
style={{
|
||||||
|
|
Loading…
Reference in a new issue