We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc3ce5 commit 141ac68Copy full SHA for 141ac68
client/src/components/apps/new.vue
@@ -719,6 +719,9 @@ export default {
719
720
loadPodsizeList() {
721
axios.get('/api/config/podsize').then(response => {
722
+ if (response.data.length > 0 && this.app == 'new') {
723
+ this.podsize = response.data[0];
724
+ }
725
for (let i = 0; i < response.data.length; i++) {
726
this.podsizes.push({
727
text: response.data[i].description,
0 commit comments