sim 2.1.18-dev.131.1 → 2.1.18-dev.133.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2171 -2168
- package/dist/runtime.js +4 -1
- package/package.json +1 -1
package/dist/runtime.js
CHANGED
|
@@ -16101,7 +16101,10 @@ var PROFILE_COLUMNS = [
|
|
|
16101
16101
|
{ header: "profile", value: (row) => safeOneLine(row.name) },
|
|
16102
16102
|
{ header: "key", value: (row) => row.error ? text(null) : row.hasKey ? "yes" : "no" },
|
|
16103
16103
|
{ header: "auth", value: (row) => row.authProfile ? safeOneLine(row.authProfile) : text(null) },
|
|
16104
|
-
{
|
|
16104
|
+
{
|
|
16105
|
+
header: "error",
|
|
16106
|
+
value: (row) => row.error ? styles3().red(safeOneLine(row.error)) : text(null)
|
|
16107
|
+
}
|
|
16105
16108
|
];
|
|
16106
16109
|
function buildProfileRow(name, active) {
|
|
16107
16110
|
try {
|