Skip to content

Commit

Permalink
Format and PR comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdunkerley committed Sep 6, 2024
1 parent 174c447 commit 25bfeb1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
3 changes: 0 additions & 3 deletions app/dashboard/src/layouts/Samples.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ function ProjectTile(props: InternalProjectTileProps) {
</FocusRing>
)}
</FocusArea>
{/* Although this component is instantiated multiple times, it has a unique role and hence
* its own opacity. */}
{/* eslint-disable-next-line no-restricted-syntax */}
</div>
)
}
Expand Down
15 changes: 10 additions & 5 deletions lib/scala/pkg/src/main/scala/org/enso/pkg/Package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ class PackageManager[F](implicit val fileSystem: FileSystem[F]) {
"showdata.gif",
"simpleexpression.gif",
"table_solution.png",
"table_viz.png",
"table_viz.png"
)
copyTemplateFiles(pkg, "getting_started_reading", srcFiles, List())

Expand All @@ -478,17 +478,22 @@ class PackageManager[F](implicit val fileSystem: FileSystem[F]) {
"answer_table.png",
"eags.png",
"set.gif",
"table1.png",
"table1.png"
)
val dataFiles = List(
"sample_bank_data.xlsx"
)
copyTemplateFiles(pkg, "getting_started_aggregating", srcFiles, dataFiles)
copyTemplateFiles(
pkg,
"getting_started_aggregating",
srcFiles,
dataFiles
)

case Template.GettingStartedCleansing =>
val srcFiles = List(
Package.mainFileName,
"eags.png",
"eags.png"
)
val dataFiles = List(
"crm_data.csv"
Expand All @@ -500,7 +505,7 @@ class PackageManager[F](implicit val fileSystem: FileSystem[F]) {
Package.mainFileName,
"eags.png",
"table1.png",
"table2.png",
"table2.png"
)
val dataFiles = List(
"crm_data.csv",
Expand Down

0 comments on commit 25bfeb1

Please sign in to comment.