annotations.editor.html 758 B

12345678910111213141516171819
  1. <cloudwatch-query-parameter target="ctrl.annotation" datasource="ctrl.datasource"></cloudwatch-query-parameter>
  2. <div class="editor-row">
  3. <div class="section">
  4. <h5>Prefix matching</h5>
  5. <div class="editor-option">
  6. <editor-checkbox text="Enable" model="ctrl.annotation.prefixMatching"></editor-checkbox>
  7. </div>
  8. <div class="editor-option" ng-if="ctrl.annotation.prefixMatching">
  9. <label class="small">Action</label>
  10. <input type="text" class="input-small" ng-model='ctrl.annotation.actionPrefix'></input>
  11. </div>
  12. <div class="editor-option" ng-if="ctrl.annotation.prefixMatching">
  13. <label class="small">Alarm Name</label>
  14. <input type="text" class="input-small" ng-model='ctrl.annotation.alarmNamePrefix'></input>
  15. </div>
  16. </div>
  17. </div>