Skip to content

Commit

Permalink
feat(google): fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarulg committed Oct 18, 2024
1 parent 2aab2f0 commit c6bedda
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/forms/forms.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CORE_FORMS_CHECKLIST_CHECKLIST_DIRECTIVE } from './checklist/checklist.
import { CORE_FORMS_CHECKMAP_CHECKMAP_DIRECTIVE } from './checkmap/checkmap.directive';
import { CORE_FORMS_IGNOREEMPTYDELETE_DIRECTIVE } from './ignoreEmptyDelete.directive';
import { CORE_FORMS_MAPEDITOR_MAPEDITOR_COMPONENT } from './mapEditor/mapEditor.component';
import { CORE_FORMS_MAPOBJECTEDITOR_MAPOBJECTEDITOR_COMPONENT } from './mapObjectEditor/mapObjectEditor.component'
import { CORE_FORMS_MAPOBJECTEDITOR_MAPOBJECTEDITOR_COMPONENT } from './mapObjectEditor/mapObjectEditor.component';
import { NUMBER_LIST_COMPONENT } from './numberList/numberList.component';
import { CORE_FORMS_VALIDATEONSUBMIT_VALIDATEONSUBMIT_DIRECTIVE } from './validateOnSubmit/validateOnSubmit.directive';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ describe('Component: mapObjectEditor', function () {

it('can override "Key" and "Value"', function () {
scope.model = {};
let dom = this.compile('<map-object-editor model="model" key-label="some key" value-label="the value"></map-object-editor>')(
scope,
);
let dom = this.compile(
'<map-object-editor model="model" key-label="some key" value-label="the value"></map-object-editor>',
)(scope);
scope.$digest();
expect(dom.find('th')[0].innerText).toBe('some key');
expect(dom.find('th')[1].innerText).toBe('the value');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@
<b>Partner Metadata</b>
<help-field key="gce.serverGroup.partnerMetadata"></help-field>
</div>
<map-object-editor model="vm.command.partnerMetadata" add-button-label="Add New Metadata" allow-empty="false"></map-object-editor>
<map-object-editor
model="vm.command.partnerMetadata"
add-button-label="Add New Metadata"
allow-empty="false"
></map-object-editor>
</div>
<div class="form-group">
<div class="sm-label-left">
Expand Down

0 comments on commit c6bedda

Please sign in to comment.