Merge pull request #497 from dod-ccpo/v-cloak
Prevent Vue from Loading Variables Before Evaluation
This commit is contained in:
commit
52bb0bd5fc
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
<div v-cloak>
|
||||||
<section class="block-list">
|
<section class="block-list">
|
||||||
<header class="block-list__header">
|
<header class="block-list__header">
|
||||||
<h1 class="block-list__title">Activity History</h1>
|
<h1 class="block-list__title">Activity History</h1>
|
||||||
@ -18,8 +18,8 @@
|
|||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{{ Pagination(audit_events, 'atst.activity_history') }}
|
{{ Pagination(audit_events, 'atst.activity_history') }}
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="col col--grow">
|
<div v-cloak class="col col--grow">
|
||||||
|
|
||||||
{% if extended_view %}
|
{% if extended_view %}
|
||||||
<form @submit.prevent class='search-bar'>
|
<form @submit.prevent class='search-bar'>
|
||||||
@ -109,7 +109,7 @@
|
|||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class='responsive-table-wrapper'>
|
<div v-cloak class='responsive-table-wrapper'>
|
||||||
<table v-if="filteredRequests.length">
|
<table v-if="filteredRequests.length">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class='col'>
|
<div v-cloak class='col'>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
|
|
||||||
{% for project in workspace.projects %}
|
{% for project in workspace.projects %}
|
||||||
<div class='block-list project-list-item'>
|
<div v-cloak class='block-list project-list-item'>
|
||||||
<header class='block-list__header'>
|
<header class='block-list__header'>
|
||||||
<h2 class='block-list__title'>{{ project.name }} ({{ project.environments|length }} environments)</h2>
|
<h2 class='block-list__title'>{{ project.name }} ({{ project.environments|length }} environments)</h2>
|
||||||
{% if user_can(permissions.RENAME_APPLICATION_IN_WORKSPACE) %}
|
{% if user_can(permissions.RENAME_APPLICATION_IN_WORKSPACE) %}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
{"label": "Learn More", "href": url_for('atst.helpdocs'), "icon": "info"}
|
{"label": "Learn More", "href": url_for('atst.helpdocs'), "icon": "info"}
|
||||||
] ) }}
|
] ) }}
|
||||||
|
|
||||||
<div class='funding-summary-row'>
|
<div v-cloak class='funding-summary-row'>
|
||||||
|
|
||||||
<div class='funding-summary-row__col'>
|
<div class='funding-summary-row__col'>
|
||||||
<div class='panel spend-summary'>
|
<div class='panel spend-summary'>
|
||||||
@ -131,6 +131,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
|
|
||||||
<budget-chart
|
<budget-chart
|
||||||
|
v-cloak
|
||||||
budget={{ budget }}
|
budget={{ budget }}
|
||||||
current-month='{{ current_month_index }}'
|
current-month='{{ current_month_index }}'
|
||||||
expiration-date='{{ expiration_date }}'
|
expiration-date='{{ expiration_date }}'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user