Seems like debug and deploy button text is missing
Add span element could fix it
<Button outline v-if=“isBuildFinished(build)”
class=“button-debug”
@click.native=“handleDebug”
:disabled="!isCollaborator">
Debug
<Button outline v-if="showDeployButton"
class="button-promote"
@click.native="openDeployModal">
<span>Deploy</span>
<IconDeploy/>
</Button>