mirror of
https://github.com/processwire/processwire.git
synced 2025-08-23 06:44:38 +02:00
Fix issue processwire/processwire-issues#553 where a note in AdminThemeUikit config screen needed to be updated for new module location
This commit is contained in:
@@ -167,7 +167,8 @@ function AdminThemeUikitConfig(AdminTheme $adminTheme, InputfieldWrapper $inputf
|
||||
$f->label = __('Primary CSS file');
|
||||
$f->description = $defaultFileDesc . ' ' .
|
||||
__('We do not recommend changing this unless you are an admin theme developer.');
|
||||
$f->notes = $defaultFileNote . "\nsite/modules/AdminThemeUikit/uikit/dist/css/uikit.pw.css";
|
||||
$f->notes = $defaultFileNote . " " .
|
||||
"[uikit.pw.css](" . $modules->wire('config')->urls('AdminThemeUikit') . "uikit/dist/css/uikit.pw.css)";
|
||||
$f->collapsed = Inputfield::collapsedBlank;
|
||||
$f->icon = 'file-code-o';
|
||||
$fieldset->add($f);
|
||||
|
Reference in New Issue
Block a user