-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
952709f
commit fde9414
Showing
3 changed files
with
53 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 23 additions & 3 deletions
26
src/ServicePulse.Host/vue/src/views/throughputreport/ReportView.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,25 @@ | ||
<script setup lang="ts"></script> | ||
<script setup lang="ts"> | ||
function generateReport() {} | ||
</script> | ||
|
||
<template>Report</template> | ||
<template> | ||
<div class="box"> | ||
<div class="row"> | ||
<div class="col-6"> | ||
<label class="form-label">Mask sensitive data</label> | ||
<textarea class="form-control" rows="3"></textarea> | ||
<div class="form-text">Masks sensitive information in the generated report. One word per line.</div> | ||
</div> | ||
<div class="col-6 text-end"><button class="btn btn-primary actions" type="button" @click="generateReport">Generate Report</button></div> | ||
</div> | ||
</div> | ||
<div class="extra-info"> | ||
<p>For MSMQ, ask the user if they have more endpoints that do not have audit/monitoring turned on, and if so to also send us a screen shot of their MSMQqueues in addition to the report.</p> | ||
</div> | ||
</template> | ||
|
||
<style scoped></style> | ||
<style scoped> | ||
.extra-info { | ||
margin: 15px 0; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters