mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
518 B
PHP
12 lines
518 B
PHP
<div class="flex-container-row justify-space-between items-center gap-m item-list-row">
|
|
<label for="shortcut-{{ $id }}" class="bold flex px-m py-xs">{{ $label }}</label>
|
|
<div class="px-m py-xs">
|
|
<input type="text"
|
|
component="shortcut-input"
|
|
class="small flex-none shortcut-input px-s py-xs"
|
|
id="shortcut-{{ $id }}"
|
|
name="shortcut[{{ $id }}]"
|
|
readonly
|
|
value="{{ $shortcuts->getShortcut($id) }}">
|
|
</div>
|
|
</div> |