Skip to content

Commit

Permalink
Merge pull request #35 from IdeasOnCanvas/bugfix/website
Browse files Browse the repository at this point in the history
Fix Layout Issue in generated Website
  • Loading branch information
Patrick-Kladek authored May 16, 2022
2 parents b76b96a + e765979 commit 7af8d25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Screenshot Framer CLI/WebsiteBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private extension WebsiteBuilder {
let tableRow = Element(Tag("tr"), "")

let tableHeader = Element(Tag("th"), "")
try tableHeader.attr("colspan", "1")
try tableHeader.attr("colspan", "100%")

let content = Element(Tag("a"), "")
try content.attr("id", device)
Expand Down
2 changes: 1 addition & 1 deletion Screenshot Framer CLI/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct ScreenshotFramer: ParsableCommand {

static let configuration = CommandConfiguration(
abstract: "A Swift command-line tool to frame localised screenshots for the AppStore",
version: "2.0"
version: "2.0.1",
subcommands: [Export.self, Website.self])

init() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class TimeTravelWindowController: NSWindowController {

override var document: AnyObject? {
get { return nil }
set {} // swiftlint:disable:this unused_setter_value
set {}
}


Expand Down

0 comments on commit 7af8d25

Please sign in to comment.