Merge branch 'main' of https://gitlab.com/bignutty/labscore into main

This commit is contained in:
derpystuff 2024-03-28 20:56:52 +01:00
commit 76bea68d82
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ module.exports = {
currentRevision = res.data.platforms[DEFAULT_PLATFORM].images[0].id
let selectTypeOptions = Object.keys(res.data.platforms).map((r) => {
let selectTypeOptions = Object.keys(res.data.platforms).splice(0, 25).map((r) => {
let pl = res.data.platforms[r]
return {
label: pl.name,

View file

@ -238,7 +238,7 @@ module.exports = {
currentRevision = res.data.platforms[DEFAULT_PLATFORM].images[0].id
let selectTypeOptions = Object.keys(res.data.platforms).map((r) => {
let selectTypeOptions = Object.keys(res.data.platforms).splice(0, 25).map((r) => {
let pl = res.data.platforms[r]
return {
label: pl.name,