Skip to content
Snippets Groups Projects
Verified Commit 80c9887e authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Fix workflow token collapse when registering a new workflow

parent b7440e18
No related branches found
No related tags found
1 merge request!155Resolve "Fix workflow token collapse when registering a workflow"
This commit is part of merge request !155. Comments created here will be created in the context of that merge request.
...@@ -552,7 +552,7 @@ onMounted(() => { ...@@ -552,7 +552,7 @@ onMounted(() => {
class="form-check-input" class="form-check-input"
type="checkbox" type="checkbox"
v-model="repositoryCredentials.privateRepo" v-model="repositoryCredentials.privateRepo"
id="createWorkflowPrivateRepositoryCheckbox" id="privateRepositoryCheckbox"
@change="formState.allowUpload = false" @change="formState.allowUpload = false"
aria-controls="#createWorkflowPrivateRepositoryCheckbox" aria-controls="#createWorkflowPrivateRepositoryCheckbox"
/> />
......
...@@ -97,13 +97,13 @@ onMounted(() => { ...@@ -97,13 +97,13 @@ onMounted(() => {
style="max-height: 70px" style="max-height: 70px"
/> />
</a> </a>
<div class="my-2"> <div class="mt-2" v-if="invitationToken == undefined">
Don't have an account? Don't have an account?
<router-link :to="{ name: 'signup' }"> <router-link :to="{ name: 'signup' }">
Create an account</router-link Create an account</router-link
>. >.
</div> </div>
<div> <div class="mt-2">
By using this service you agree to our By using this service you agree to our
<router-link :to="{ name: 'terms' }">terms of usage</router-link> <router-link :to="{ name: 'terms' }">terms of usage</router-link>
and and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment