cockpit_GROUPS
cockpit_GROUPS copied to clipboard
Plugin icon and Finder module errors. Add feature : block access to the Assets module
Hi,
Thanks for this plugin. Can you add this feature and fix these bugs ?
1/ Could you add an option to block access to the Assets module ?
2/ When I connect to an account created with the plugin... I can't use the Finder module, although the module is active in the plugin. I have a error message : "Something went wrong".
3/ The URI of the plugin icon is not correct.
Change this :
<li class="uk-grid-margin">
<a class="uk-display-block uk-panel-card-hover uk-panel-box uk-panel-space " href="/groups">
<div class="uk-svg-adjust">
<img class="uk-margin-small-right inherit-color" data-uk-svg="" alt="assets" src="/assets/app/media/icons/accounts.svg" width="40" height="40">
</div>
<div class="uk-text-truncate uk-text-small uk-margin-small-top">Groups</div>
</a>
</li>
By this (src="../assets/app/media/icons/accounts.svg" instead of src="/assets/app/media/icons/accounts.svg") :
<li class="uk-grid-margin">
<a class="uk-display-block uk-panel-card-hover uk-panel-box uk-panel-space " href="/groups">
<div class="uk-svg-adjust">
<img class="uk-margin-small-right inherit-color" data-uk-svg="" alt="assets" src="../assets/app/media/icons/accounts.svg" width="40" height="40">
</div>
<div class="uk-text-truncate uk-text-small uk-margin-small-top">Groups</div>
</a>
</li>
Thanks in advance.