mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
feat(gpu): rework docker GPU for UI performance [EE-4918] (#8518)
This commit is contained in:
parent
769c8372fb
commit
fd916bc8a2
52 changed files with 692 additions and 285 deletions
|
@ -25,6 +25,7 @@ import { Slider } from '@@/form-components/Slider';
|
|||
import { TagButton } from '@@/TagButton';
|
||||
import { BETeaserButton } from '@@/BETeaserButton';
|
||||
import { CodeEditor } from '@@/CodeEditor';
|
||||
import { InsightsBox } from '@@/InsightsBox';
|
||||
|
||||
import { fileUploadField } from './file-upload-field';
|
||||
import { switchField } from './switch-field';
|
||||
|
@ -32,6 +33,7 @@ import { customTemplatesModule } from './custom-templates';
|
|||
import { gitFormModule } from './git-form';
|
||||
import { settingsModule } from './settings';
|
||||
import { accessControlModule } from './access-control';
|
||||
import { environmentsModule } from './envronments';
|
||||
import { envListModule } from './enviroments-list-view-components';
|
||||
|
||||
export const componentsModule = angular
|
||||
|
@ -40,6 +42,7 @@ export const componentsModule = angular
|
|||
gitFormModule,
|
||||
settingsModule,
|
||||
accessControlModule,
|
||||
environmentsModule,
|
||||
envListModule,
|
||||
])
|
||||
.component(
|
||||
|
@ -74,6 +77,10 @@ export const componentsModule = angular
|
|||
.component('badge', r2a(Badge, ['type', 'className']))
|
||||
.component('fileUploadField', fileUploadField)
|
||||
.component('porSwitchField', switchField)
|
||||
.component(
|
||||
'insightsBox',
|
||||
r2a(InsightsBox, ['header', 'content', 'setHtmlContent', 'insightCloseId'])
|
||||
)
|
||||
.component(
|
||||
'passwordCheckHint',
|
||||
r2a(withReactQuery(PasswordCheckHint), [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue