Skip to content
Snippets Groups Projects
Select Git revision
  • f02163c803fc2bc6c8cdfa86ad837908bf88cd96
  • master default protected
  • dev
  • ckan-2.9
  • refactor-css
  • improve-accessibility
  • fix-get_action-calls
  • summary-collection
  • debug-collections
  • debug-eakte
  • experimental-linked-resources-as-uploads
  • button-text-detail
  • Detailinfo
  • hash
  • URL_Upload
  • URL_Upload_working_BB
  • url_exp
  • ODPSH-550
  • href-for-preview
  • ODPSH-HASH-ALGO
  • Algo
  • v1.61
  • v1.6
  • v1.51
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • v0.1
  • sprint-18
  • sprint11_2
  • sprint10
  • sprint8
  • sprint7
  • sprint6
37 results

plugin.py

Blame
  • text-field.component.html 807 B
    <div class="flex flex-col">
      <label class="grid grid-cols-2 items-center">
        <span
          [attr.data-test-id]="'text-field-span-' + label | convertForDataTest"
          [ngClass]="control?.invalid ? ['text-red-500', 'font-bold'] : []"
          >{{ label }}</span
        >
        <input
          class="m-[2px] p-[2px] outline outline-2 outline-gray-100 focus:outline-0 focus:outline-gray-500"
          [attr.data-test-id]="'text-field-input-' + label | convertForDataTest"
          type="text"
          [formControl]="fieldControl"
        />
      </label>
      <div
        *ngIf="invalidParams.length > 0"
        [attr.data-test-id]="'text-field-errors-' + label | convertForDataTest"
      >
        <span class="mb-3 italic text-red-500" *ngFor="let invalidParam of invalidParams">{{
          getErrorMessage(invalidParam)
        }}</span>
      </div>
    </div>