- bug fixed

add-reporting-dashboard
saif 2025-03-27 13:10:36 +05:00
parent 7014d0bfcb
commit 05c14e0940
2 changed files with 2 additions and 7 deletions

View File

@ -19,7 +19,6 @@
<script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script> <script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/solid-gauge.js"></script> <script src="https://code.highcharts.com/modules/solid-gauge.js"></script>
<script th:src="@{/js/vue-components.js}"></script>
<title th:text="${#strings.concat(title, ' - CTP')}"></title> <title th:text="${#strings.concat(title, ' - CTP')}"></title>
</head> </head>
<body> <body>

View File

@ -36,7 +36,7 @@
<label>Created End Date</label> <label>Created End Date</label>
<input type="date" class="form-control" name="end-date" th:value="${param['end-date']}"> <input type="date" class="form-control" name="end-date" th:value="${param['end-date']}">
</div> </div>
<div class="form-group" data-vue-app th:with="id=${param['site-id']},title=${param['site-title']}"> <div class="form-group" th:with="id=${param['site-id']},title=${param['site-title']}" data-vue-app>
<location-site-search th:attr="id=${id},title=${title}" <location-site-search th:attr="id=${id},title=${title}"
v-bind:id-field-name="'site-id'" v-bind:id-field-name="'site-id'"
v-bind:title-field-name="'site-title'" v-bind:title-field-name="'site-title'"
@ -51,12 +51,8 @@
<a th:href="@{${#strings.replace(#httpServletRequest.requestURI, #request.getContextPath(), '')}}" <a th:href="@{${#strings.replace(#httpServletRequest.requestURI, #request.getContextPath(), '')}}"
class="btn btn-secondary btn-block">Reset</a> class="btn btn-secondary btn-block">Reset</a>
</form> </form>
<div th:replace="_fragments :: page-footer-scripts"></div>
</div> </div>
</aside> </aside>
<!-- sidebar ends -->
<div th:fragment="page-footer-scripts">
<script th:src="@{/js/vendor/lazyload-db.js}"></script>
<script th:src="@{/js/main.js}"></script>
</div>
</body> </body>
</html> </html>