Can I disable the fullscreen button in a Cumulocity Dashboard?


We made a new app based on Cockpit app.
We want to erase or disable the fullscreen button.
How is that possible?

You should have dashboard module, under that you should find
\dashboard\dashboard.html, you can fine button and play with it.

<button title=“{{‘Toggle full screen’ | translate}}”

  class="btn btn-link"

  ng-click="toggleFullscreen()">

  <i c8y-icon="{{fullScreen() ? 'compress' : 'expand'}}"></i> <translate>Full screen</translate>

 </button>