Skip to content

Commit

Permalink
Update sample-data-filling.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Susannnnnna authored Feb 22, 2024
1 parent 8ae8fb5 commit fea4f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/sample-data-filling.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function fillFormWithSampleDataSingleRow() {
document.getElementById("tableName").value = "TableExampleName";
document.getElementById("columnNames").value = "ColumnName1,ColumnName2,ColumnName3,ColumnName4";
document.getElementById("dataValues").value = "Value1,Value2,Value3,Value4";
document.getElementById("columnNames").value = "ColumnName1,ColumnName2";
document.getElementById("dataValues").value = "Value1,Value2";
document.getElementById("primaryKey").value = "exampleId";
document.getElementById("primaryKeyValue").value = "1";
}
Expand Down

0 comments on commit fea4f22

Please sign in to comment.