Skip to content

Commit

Permalink
JS, HTML, CSS Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
crashrap1995 committed Aug 15, 2024
1 parent c637780 commit 5f449dc
Show file tree
Hide file tree
Showing 42 changed files with 2,540 additions and 2,301 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/eslint-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ESLint Check

on:
push:
branches:
- '**' # This will match all branches
paths:
- "force-app/**"

pull_request:
branches:
- '**' # This will match all branches
paths:
- "force-app/**"

jobs:
eslint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run ESLint
run: npm run lint
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ th {

.slds-card__header {
padding-top: 0px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,11 @@ <h2 style="font-weight: bold; font-size: 1.3em; padding: 5px">
<lightning-formatted-rich-text value={fieldData.value}></lightning-formatted-rich-text>
</div>
</template>
<template if:true={fieldData.isMultiPicklist} class="slds-truncate">
<div id={rowData.rowId} title={fieldData.value} class="slds-truncate" style="text-align:center;">
{fieldData.value}
<template if:true={fieldData.isMultiPicklist}>
<div class="slds-truncate">
<div id={rowData.rowId} title={fieldData.value} class="slds-truncate" style="text-align:center;">
{fieldData.value}
</div>
</div>
</template>
</template>
Expand Down
1,556 changes: 839 additions & 717 deletions force-app/main/default/lwc/simpliUIListViews/simpliUIListViews.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
overflow: auto;
}

.pageSpinnerHolder{
.pageSpinnerHolder {
position: absolute;
}
}
Loading

0 comments on commit 5f449dc

Please sign in to comment.