Files
nextcloud-mcp-server/third_party/astrolabe/templates/settings/admin.php
T
Chris Coutinho e87ae56041 fix(astrolabe): Fix NcSelect options and CSS loading
- Use :input-label prop for NcSelect field labels instead of :label
  (the :label prop sets the option label property key, not the visible label)
- Fix CSS loading in admin.php and personal.php templates to use
  astrolabe-main (the bundled CSS file)
- Update minimum Nextcloud version to 31 (required for Vue 3)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-15 17:21:22 +01:00

16 lines
368 B
PHP

<?php
/**
* Admin settings template for Astrolabe.
*
* Mounts the Vue.js admin settings component for async loading
* and improved UX.
*/
script('astrolabe', 'astrolabe-adminSettings');
style('astrolabe', 'astrolabe-main'); // All CSS bundled into main
?>
<div id="astrolabe-admin-settings" class="section">
<!-- Vue component will be mounted here -->
</div>