fix(components): forgejo runner no capital letter
This commit is contained in:
parent
2c5305b5cd
commit
1adbb1cd04
2 changed files with 3 additions and 4 deletions
|
@ -32,7 +32,7 @@ export default {
|
||||||
"id": "forge",
|
"id": "forge",
|
||||||
"name": "Forge : git repo, CI/CD workers, and NixiN",
|
"name": "Forge : git repo, CI/CD workers, and NixiN",
|
||||||
"services": [
|
"services": [
|
||||||
'forgejo', 'forgejoRunner', 'nixin'
|
'forgejo', 'forgejorunner', 'nixin'
|
||||||
]
|
]
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
||||||
"name": "Forgejo : git hosting"
|
"name": "Forgejo : git hosting"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "forgejoRunner",
|
"id": "forgejorunner",
|
||||||
"name": "Forgejo runner : CD/CI runner for Forgejo"
|
"name": "Forgejo runner : CD/CI runner for Forgejo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -604,7 +604,7 @@ export default {
|
||||||
};
|
};
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="nixinServices.includes('forgejoRunner')">
|
<div v-if="nixinServices.includes('forgejorunner')">
|
||||||
virtualisation.containers.enable = true;
|
virtualisation.containers.enable = true;
|
||||||
virtualisation.podman = {
|
virtualisation.podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import {ref} from 'vue'
|
|
||||||
import DynamicComponent from "./DynamicComponent.vue"
|
import DynamicComponent from "./DynamicComponent.vue"
|
||||||
|
|
||||||
const props = defineProps(['service'])
|
const props = defineProps(['service'])
|
||||||
|
|
Loading…
Reference in a new issue