Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
crashmax-dev committed Oct 24, 2024
1 parent dfd866b commit f45525b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/dashboard/src/composables/use-form-field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export function useFormField<T>(name: string, initialValue: T) {
return {
fieldRef,
fieldModel,
reset
reset,
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function computeOperationBadgeVariant(operation: AuditOperationType): BadgeVaria

export const useAuditTable = createGlobalState(() => {
const { pagination } = usePagination()
const { searchType, searchUserId, selectedFilters } = useAuditFilters()
const { searchType, searchUserId/* , selectedFilters */ } = useAuditFilters()

const auditParams = computed<AdminAuditLogsInput>(() => {
const userSearchKey = searchType.value === 'channel' ? 'channelId' : 'userId'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const notificationsForm = useNotificationsForm()
{{ t('adminPanel.notifications.userLabel') }}
</Label>
<TwitchUsersSelect
v-model="notificationsForm.userIdField.fieldModel.value"
v-model="notificationsForm.userIdField.fieldModel.value as string"
twir-only
/>
</div>
Expand Down

0 comments on commit f45525b

Please sign in to comment.