Commit 53e27b8c authored by Dennis Tang's avatar Dennis Tang

revisions

parent 37cfca2c
......@@ -139,10 +139,9 @@ export default {
v-for="result in results"
:key="result.id"
>
<a
href="#"
@click.prevent="setMachineType(result.name)"
>{{ result.name }}</a>
<button @click.prevent="setMachineType(result.name)">
{{ result.name }}
</button>
</li>
</ul>
</div>
......
......@@ -159,10 +159,9 @@ export default {
v-for="result in results"
:key="result.project_number"
>
<a
href="#"
@click.prevent="setProject(result)"
>{{ result.name }}</a>
<button @click.prevent="setProject(result)">
{{ result.name }}
</button>
</li>
</ul>
</div>
......
......@@ -124,10 +124,9 @@ export default {
v-for="result in results"
:key="result.id"
>
<a
href="#"
@click.prevent="setZone(result.name)"
>{{ result.name }}</a>
<button @click.prevent="setZone(result.name)">
{{ result.name }}
</button>
</li>
</ul>
</div>
......
......@@ -58,7 +58,6 @@ const initializeGapiClient = () => {
const el = document.querySelector('.js-gke-cluster-creation');
gapi.client.setToken({ access_token: el.dataset.token });
delete el.dataset.token;
gapi.client
.load(CONSTANTS.GCP_API_CLOUD_RESOURCE_MANAGER_ENDPOINT)
......
......@@ -31,7 +31,7 @@ export default {
class="dropdown-menu-toggle dropdown-menu-full-width"
type="button"
data-toggle="dropdown"
aria-expanded="true"
aria-expanded="false"
:disabled="isDisabled || isLoading"
>
<loading-icon
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment