From a47fc6ee1aab389035a2d15d075177e78dfe0fb0 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Jan 14 2020 20:15:39 +0000 Subject: coreos: default to the stable stream We have the final bits for the stable release in place now! --- diff --git a/sites/static/js/coreos-download.js b/sites/static/js/coreos-download.js index 5c3dde4..1a21dd0 100644 --- a/sites/static/js/coreos-download.js +++ b/sites/static/js/coreos-download.js @@ -85,7 +85,7 @@ var coreos_download_app = new Vue({ // currently shown tab shownId: IdPool.cloud_launchable, // currently selected stream - stream: 'testing', + stream: 'stable', // currently selected architecture architecture: 'x86_64', // current url to dir for stream @@ -166,8 +166,8 @@ var coreos_download_app = new Vue({ // Add dropdown options of streams getStreamName: function(h) { if (this.streamData === null) return; - option_default = h('option', { attrs: { value: "testing", selected: "selected" }}, "testing"); - option_stable = h('option', { attrs: { value: "stable" }}, "stable"); + option_default = h('option', { attrs: { value: "stable", selected: "selected" }}, "stable"); + option_testing = h('option', { attrs: { value: "testing" }}, "testing"); selectOptions = h('select', { class: "mx-1", on: { @@ -177,7 +177,7 @@ var coreos_download_app = new Vue({ } }, [ option_default, - option_stable + option_testing ]); streamName = h('p', {}, [ "Stream: ",