Skip to content

Commit

Permalink
Run stylua
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffany352 committed Aug 20, 2022
1 parent 0cd6d7a commit 87c748e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Components/TagList/Group.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ local function Group(props)
BackgroundTransparency = 1,
Size = UDim2.new(1, 0, 1, 0),
}, {
Visibility = Roact.createElement(Icon, {
Visibility = Roact.createElement(Icon, {
Name = "folder_lightbulb",
Position = UDim2.new(1, -4, 0.5, 0),
AnchorPoint = Vector2.new(1, 0.5),
Expand Down
8 changes: 4 additions & 4 deletions src/Components/TagList/TagSettings/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ local function TagSettings(props)
end,
}, {
UITextSizeConstraint = Roact.createElement("UITextSizeConstraint", {
MaxTextSize = 16
MaxTextSize = 16,
}),
}),
ChangeGroup = Roact.createElement(Button, {
Expand All @@ -57,7 +57,7 @@ local function TagSettings(props)
end,
}, {
UITextSizeConstraint = Roact.createElement("UITextSizeConstraint", {
MaxTextSize = 16
MaxTextSize = 16,
}),
}),
TaggedInstances = Roact.createElement(Button, {
Expand All @@ -70,7 +70,7 @@ local function TagSettings(props)
end,
}, {
UITextSizeConstraint = Roact.createElement("UITextSizeConstraint", {
MaxTextSize = 16
MaxTextSize = 16,
}),
}),
Delete = Roact.createElement(DeleteButton, {
Expand All @@ -84,7 +84,7 @@ local function TagSettings(props)
end,
}, {
UITextSizeConstraint = Roact.createElement("UITextSizeConstraint", {
MaxTextSize = 16
MaxTextSize = 16,
}),
}),
}),
Expand Down
2 changes: 1 addition & 1 deletion src/Components/WorldView/HighlightAdorn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local function HighlightAdorn(props)
Adornee = if props.Adornee.ClassName == "Attachment" then props.Adornee.Parent else props.Adornee,
FillColor = props.Color,
OutlineColor = props.Color,
DepthMode = if props.AlwaysOnTop then Enum.HighlightDepthMode.AlwaysOnTop else Enum.HighlightDepthMode.Occluded
DepthMode = if props.AlwaysOnTop then Enum.HighlightDepthMode.AlwaysOnTop else Enum.HighlightDepthMode.Occluded,
})
end

Expand Down
2 changes: 1 addition & 1 deletion src/Components/WorldView/WorldProvider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function WorldProvider:updateParts()
elseif tag.DrawType == "Icon" then
icons[#icons + 1] = tag.Icon
elseif tag.DrawType == "Highlight" then
highlights[#highlights+1] = tag.Color
highlights[#highlights + 1] = tag.Color
elseif tag.DrawType == "Text" then
labels[#labels + 1] = tagName
elseif tag.DrawType == "Sphere" then
Expand Down

0 comments on commit 87c748e

Please sign in to comment.