Debug and deploy text missing

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>

image

the debug and deploy buttons are “icon” buttons, which means we only show the icon and we omit the text on purpose.