Skip to content

Commit 16a3a33

Browse files
authored
Merge pull request #6380 from opsmill/bgi-various-fixes
Various fixes
2 parents c5d0949 + 6e58165 commit 16a3a33

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ development/docker-compose.dev-override.yml
1717
**/.idea/**
1818
dist/*
1919

20+
# As we might run collect command from this repo
21+
support_logs_*
22+
2023
# Direnv files (https://direnv.net/)
2124
.direnv/
2225
.envrc

backend/infrahub/core/schema/definitions/core/builtin.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
from infrahub.core.constants import (
2-
BranchSupportType,
3-
)
1+
from infrahub.core.constants import BranchSupportType
42

53
from ...attribute_schema import AttributeSchema as Attr
64
from ...node_schema import NodeSchema
75

86
builtin_tag = NodeSchema(
97
name="Tag",
108
namespace="Builtin",
11-
description="Standard Tag object to attached to other objects to provide some context.",
9+
description="Standard Tag object to attach to other objects to provide some context.",
1210
include_in_menu=True,
1311
icon="mdi:tag-multiple",
1412
label="Tag",

backend/tests/fixtures/schemas/schema_02.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@
681681
{
682682
"name": "Tag",
683683
"namespace": "Builtin",
684-
"description": "Standard Tag object to attached to other objects to provide some context.",
684+
"description": "Standard Tag object to attach to other objects to provide some context.",
685685
"default_filter": "name__value",
686686
"order_by": [
687687
"name__value"

frontend/app/tests/e2e/objects/object-list.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test.describe.fixme("/objects/:objectKind", () => {
1616

1717
await expect(page.getByRole("heading", { name: "Tag" })).toBeVisible();
1818
await expect(
19-
page.getByText("Standard Tag object to attached to other objects to provide some context.")
19+
page.getByText("Standard Tag object to attach to other objects to provide some context.")
2020
).toBeVisible();
2121
await expect(page.getByTestId("create-object-button")).toBeDisabled();
2222
await page.getByTestId("actions-cell-blue").click();

frontend/app/tests/fake/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const generateNodeSchema = (
1515
state: "present",
1616
name: "Tag",
1717
namespace: "Builtin",
18-
description: "Standard Tag object to attached to other objects to provide some context.",
18+
description: "Standard Tag object to attach to other objects to provide some context.",
1919
label: "Tag",
2020
branch: "aware",
2121
default_filter: "name__value",

0 commit comments

Comments
 (0)