mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-06-03 11:52:57 +02:00
Apply and Upgrade Eslint (#288)
* Upgrade ESLINT and fix issues * feat: add frontend linting job to GitHub Actions workflow * Move UI linting to separate file * More linting fixes * Remove pull_request trigger from UI linting workflow * Update UI linting workflow * Rename frontend-lint workflow to ui-lint for clarity
This commit is contained in:
@@ -13,11 +13,9 @@ const PeerConnectionStatusMap = {
|
||||
|
||||
export type PeerConnections = keyof typeof PeerConnectionStatusMap;
|
||||
|
||||
type StatusProps = {
|
||||
[key in PeerConnections]: {
|
||||
type StatusProps = Record<PeerConnections, {
|
||||
statusIndicatorClassName: string;
|
||||
};
|
||||
};
|
||||
}>;
|
||||
|
||||
export default function PeerConnectionStatusCard({
|
||||
state,
|
||||
|
||||
Reference in New Issue
Block a user