File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 <NcModal
88 :show =" open"
99 size =" large"
10- :has-previous =" index > 0"
11- :has-next =" index < logEntries.length - 1"
10+ :hasPrevious =" index > 0"
11+ :hasNext =" index < logEntries.length - 1"
1212 @next =" emit('update:currentEntry', logEntries[index + 1])"
1313 @previous =" emit('update:currentEntry', logEntries[index - 1])"
1414 @update:show =" emit('update:open', false)" >
4545 </NcButton >
4646 </div >
4747 <template v-if =" currentEntry .exception " >
48- <LogException :exception =" currentEntry.exception" class =" log-details__exception" :is-expanded =" isExceptionExpanded" />
48+ <LogException :exception =" currentEntry.exception" class =" log-details__exception" :isExpanded =" isExceptionExpanded" />
4949 <hr >
5050 </template >
5151 <figure class =" log-details__raw" >
Original file line number Diff line number Diff line change 66<template >
77 <NcActions
88 v-model:open =" isOpen"
9- :force-menu = " true "
9+ forceMenu
1010 :aria-label =" t('logreader', 'Search log entries')"
1111 :type =" buttonType" >
1212 <template #icon >
1313 <IconTextSearch :size =" 20" />
1414 </template >
1515 <template #default >
1616 <NcActionInput
17- :model-value =" currentQuery"
17+ :modelValue =" currentQuery"
1818 :label =" t('logreader', 'Search log entries')"
19- :show-trailing-button =" false"
19+ :showTrailingButton =" false"
2020 @submit =" isOpen = false"
2121 @input =" onSearchInput" >
2222 {{ t('logreader', 'Search log entries') }}
Original file line number Diff line number Diff line change 1212 <span class =" exception__message" >{{ exceptionMessage }}</span >
1313 </div >
1414 <StackTrace v-if =" props.isExpanded" :trace =" props.exception.Trace" class =" exception__trace" />
15- <LogException v-if =" props.isExpanded && props.exception.Previous" :is-previous =" true" :exception =" props.exception.Previous" />
15+ <LogException v-if =" props.isExpanded && props.exception.Previous" :isPrevious =" true" :exception =" props.exception.Previous" />
1616 </span >
1717</template >
1818
Original file line number Diff line number Diff line change 66<template >
77 <NcAppSettingsDialog
88 :open =" props.open"
9- :show-navigation = " true "
9+ showNavigation
1010 :name =" t('logreader', 'Log reader settings')"
1111 @update:open =" onUpdateOpen" >
1212 <NcAppSettingsSection id =" logreader-settings-levels" :name =" t('logreader', 'Filter log levels')" >
Original file line number Diff line number Diff line change 77 <fieldset >
88 <legend >{{ fieldsetLegend }}</legend >
99 <NcCheckboxRadioSwitch
10- :model-value =" dateTimeFormat"
10+ :modelValue =" dateTimeFormat"
1111 value =" raw"
1212 name =" timestamp_format"
1313 type =" radio"
14- @update:model-value =" setDateTimeFormat" >
14+ @update:modelValue =" setDateTimeFormat" >
1515 {{ t('logreader', 'Raw data') }}
1616 </NcCheckboxRadioSwitch >
1717 <NcCheckboxRadioSwitch
18- :model-value =" dateTimeFormat"
18+ :modelValue =" dateTimeFormat"
1919 :disabled =" isLocalLogfile"
2020 value =" local"
2121 name =" timestamp_format"
2222 type =" radio"
23- @update:model-value =" setDateTimeFormat" >
23+ @update:modelValue =" setDateTimeFormat" >
2424 {{ t('logreader', 'Local time') }}
2525 </NcCheckboxRadioSwitch >
2626 <NcCheckboxRadioSwitch
27- :model-value =" dateTimeFormat"
27+ :modelValue =" dateTimeFormat"
2828 :disabled =" isLocalLogfile"
2929 value =" utc"
3030 name =" timestamp_format"
3131 type =" radio"
32- @update:model-value =" setDateTimeFormat" >
32+ @update:modelValue =" setDateTimeFormat" >
3333 {{ t('logreader', 'UTC time') }}
3434 </NcCheckboxRadioSwitch >
3535 <NcCheckboxRadioSwitch
36- :model-value =" dateTimeFormat"
36+ :modelValue =" dateTimeFormat"
3737 :disabled =" isLocalLogfile"
3838 value =" relative"
3939 name =" timestamp_format"
4040 type =" radio"
41- @update:model-value =" setDateTimeFormat" >
41+ @update:modelValue =" setDateTimeFormat" >
4242 {{ t('logreader', 'Relative') }}
4343 </NcCheckboxRadioSwitch >
4444 </fieldset >
Original file line number Diff line number Diff line change 1010 <NcCheckboxRadioSwitch
1111 v-for =" (levelName, levelId) in LOGGING_LEVEL_NAMES"
1212 :key =" levelId"
13- :model-value =" shownLevels[levelId]"
14- @update:model-value =" setShowLevels(levelId)" >
13+ :modelValue =" shownLevels[levelId]"
14+ @update:modelValue =" setShowLevels(levelId)" >
1515 {{ levelName }}
1616 </NcCheckboxRadioSwitch >
1717 </fieldset >
Original file line number Diff line number Diff line change 99 <NcCheckboxRadioSwitch
1010 v-for =" (levelName, levelId) in LOGGING_LEVEL_NAMES"
1111 :key =" levelId"
12- :model-value =" logLevel"
12+ :modelValue =" logLevel"
1313 :value =" `${levelId}`"
1414 type =" radio"
1515 name =" loglevel"
16- @update:model-value =" setLogLevel" >
16+ @update:modelValue =" setLogLevel" >
1717 {{ levelName }}
1818 </NcCheckboxRadioSwitch >
1919 </fieldset >
Original file line number Diff line number Diff line change 88 <LogDetailsModal
99 v-if =" currentRow"
1010 v-model:open =" isModalOpen"
11- v-model:current-entry =" currentRow"
12- :log-entries =" sortedRows" />
11+ v-model:currentEntry =" currentRow"
12+ :logEntries =" sortedRows" />
1313 <table ref =" tableRoot" class =" log-table__table" >
1414 <thead role =" rowgroup" class =" log-table__header" >
1515 <tr >
4545 :key =" row.id"
4646 :row =" row"
4747 class =" log-table__row"
48- @show-details =" showDetailsForRow" />
48+ @showDetails =" showDetailsForRow" />
4949 </tbody >
5050 <tfoot role =" rowgroup" class =" log-table__footer" >
5151 <tr v-if =" sortedByTime !== 'ascending'" class =" log-table__load-more" >
Original file line number Diff line number Diff line change 4242 v-else
4343 :key =" settingsStore.dateTimeFormat"
4444 :timestamp =" timestamp"
45- :relative-time =" isRelativeDate && 'long'"
45+ :relativeTime =" isRelativeDate && 'long'"
4646 :format =" dateTimeFormat" />
4747 </td >
4848 <td >
4949 <NcActions placement =" left-start" >
50- <NcActionButton close-after-click @click =" emit('showDetails', row)" >
50+ <NcActionButton closeAfterClick @click =" emit('showDetails', row)" >
5151 <template #icon >
5252 <IconViewList />
5353 </template >
5454 {{ t('logreader', 'Show details') }}
5555 </NcActionButton >
56- <NcActionButton close-after-click @click =" copyRaw" >
56+ <NcActionButton closeAfterClick @click =" copyRaw" >
5757 <template #icon >
5858 <IconContentCopy />
5959 </template >
6060 {{ t('logreader', 'Copy raw entry') }}
6161 </NcActionButton >
62- <NcActionButton close-after-click @click =" copyFormatted" >
62+ <NcActionButton closeAfterClick @click =" copyFormatted" >
6363 <template #icon >
6464 <IconContentCopy />
6565 </template >
You can’t perform that action at this time.
0 commit comments