File tree 1 file changed +5
-5
lines changed
src/lib/components/controls
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 32
32
{#if ! isEmpty (validationErrors )}
33
33
<div class =" jse-validation-errors-overview" >
34
34
{#if expanded || count === 1 }
35
- <table >
35
+ <table class = " jse-validation-errors-overview-expanded " >
36
36
<tbody >
37
37
{#each limit (validationErrors , MAX_VALIDATION_ERRORS ) as validationError , index }
38
38
<tr
45
45
<td class =" jse-validation-error-icon" >
46
46
<Icon data ={faExclamationTriangle } />
47
47
</td >
48
- <td >
48
+ <td class = " jse-validation-error-path " >
49
49
{stringifyJSONPath (validationError .path )}
50
50
</td >
51
- <td >
51
+ <td class = " jse-validation-error-message " >
52
52
{validationError .message }
53
53
</td >
54
54
<td class =" jse-validation-error-action" >
77
77
</tbody >
78
78
</table >
79
79
{:else }
80
- <table >
80
+ <table class = " jse-validation-errors-overview-collapsed " >
81
81
<tbody >
82
82
<tr class ="jse-validation-error" on:click ={expand }>
83
83
<td class =" jse-validation-error-icon" >
84
84
<Icon data ={faExclamationTriangle } />
85
85
</td >
86
- <td >
86
+ <td class = " jse-validation-error-count " >
87
87
{count } validation errors
88
88
<div class =" jse-validation-errors-expand" >
89
89
<Icon data ={faAngleRight } />
You can’t perform that action at this time.
0 commit comments