Revert "Update dependency prettier to v3 (#71586)" (#71755)

This reverts commit 2e8cd1c021.
This commit is contained in:
Ashley Harrison
2023-07-17 14:46:15 +01:00
committed by GitHub
parent 8c6cdf51fc
commit 5ca382c88a
93 changed files with 378 additions and 565 deletions

View File

@@ -41,12 +41,7 @@ export class FormDropdownCtrl {
static $inject = ['$scope', '$element', '$sce', 'templateSrv'];
constructor(
private $scope: any,
$element: JQLite,
private $sce: ISCEService,
private templateSrv: any
) {
constructor(private $scope: any, $element: JQLite, private $sce: ISCEService, private templateSrv: any) {
this.inputElement = $element.find('input').first();
this.linkElement = $element.find('a').first();
this.linkMode = true;

View File

@@ -39,10 +39,7 @@ export class SwitchCtrl {
static $inject = ['$scope', '$timeout'];
constructor(
$scope: any,
private $timeout: any
) {
constructor($scope: any, private $timeout: any) {
this.show = true;
this.id = $scope.$id;
}