Cleaning some stuff.

This commit is contained in:
John Livingston
2024-05-23 16:56:11 +02:00
committed by Mehdi Benadel
parent 0491539dfd
commit b72b23d6ae
15 changed files with 35 additions and 31 deletions

View File

@ -1,15 +1,13 @@
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
import type { ChannelConfiguration } from 'shared/lib/types'
import { html, LitElement } from 'lit'
import { customElement, property, state } from 'lit/decorators.js'
import { ptTr } from '../directives/translation'
import './dynamic-table-form'
import './configuration-row'
import './help-button'
import { Task } from '@lit/task';
import type { ChannelConfiguration } from 'shared/lib/types'
import { ptTr } from '../../lib/directives/translation'
import { Task } from '@lit/task'
import { ChannelDetailsService } from '../services/channel-details'
import { provide } from '@lit/context'
import { channelConfigurationContext, channelDetailsServiceContext, registerClientOptionsContext } from '../contexts/channel'
import { channelConfigurationContext, channelDetailsServiceContext } from '../contexts/channel'
import { registerClientOptionsContext } from '../../lib/contexts/peertube'
@customElement('livechat-channel-configuration')
export class ChannelConfigurationElement extends LitElement {