Merge branch 'release' into feat/migrate_organization_to_workspaces
This commit is contained in:
commit
48dfbd4b33
|
|
@ -213,9 +213,9 @@ describe("AForce - Community Issues page validations", function () {
|
|||
|
||||
table.OpenNFilterTable("Title", "contains", "query", 'OR', 1)
|
||||
table.ReadTableRowColumnData(1, 0).then(($cellData) => {
|
||||
expect($cellData).to.eq("Question");
|
||||
expect($cellData).to.be.oneOf(['Troubleshooting','Question'])
|
||||
});
|
||||
table.ReadTableRowColumnData(7, 1).then(($cellData) => {
|
||||
table.ReadTableRowColumnData(6, 1).then(($cellData) => {
|
||||
expect($cellData).to.eq("Run storeValue commands before a Query.run()");
|
||||
});
|
||||
table.RemoveFilterNVerify("Question", true, false)
|
||||
|
|
|
|||
|
|
@ -73,8 +73,9 @@ describe("Git sync apps", function() {
|
|||
cy.get(generatePage.selectTableDropdown).click();
|
||||
|
||||
cy.get(generatePage.dropdownOption)
|
||||
.first()
|
||||
.contains("public.configs")
|
||||
.click();
|
||||
|
||||
// skip optional search column selection.
|
||||
cy.get(generatePage.generatePageFormSubmitBtn).click();
|
||||
|
||||
|
|
|
|||
|
|
@ -580,6 +580,7 @@ export const WELCOME_TOUR_STICKY_BUTTON_TEXT = () => "Next mission";
|
|||
|
||||
// Data Sources pane
|
||||
export const EMPTY_ACTIVE_DATA_SOURCES = () => "No active datasources found.";
|
||||
export const SCHEMA_NOT_AVAILABLE = () => "Schema not available";
|
||||
|
||||
export const SNIPPET_EXECUTION_SUCCESS = () => `Snippet executed successfully.`;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
import {
|
||||
createMessage,
|
||||
SCHEMA_NOT_AVAILABLE,
|
||||
} from "@appsmith/constants/messages";
|
||||
import {
|
||||
DatasourceStructure as DatasourceStructureType,
|
||||
DatasourceTable,
|
||||
|
|
@ -42,7 +46,7 @@ const Container = (props: Props) => {
|
|||
props.datasourceStructure.error &&
|
||||
props.datasourceStructure.error.message
|
||||
? props.datasourceStructure.error.message
|
||||
: "No information available"}
|
||||
: createMessage(SCHEMA_NOT_AVAILABLE)}
|
||||
</EntityPlaceholder>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[program:mongodb]
|
||||
directory=/appsmith-stacks/data/mongodb
|
||||
command=mongod --port 27017 --dbpath . --logpath log --replSet mr1 --keyFile key --bind_ip localhost
|
||||
command=mongod --port 27017 --dbpath . --logpath /appsmith-stacks/logs/%(program_name)s/db.log --replSet mr1 --keyFile key --bind_ip localhost
|
||||
priority=10
|
||||
autostart=true
|
||||
autorestart=true
|
||||
|
|
@ -13,4 +13,4 @@ stderr_logfile_maxbytes=10MB
|
|||
stdout_logfile_backups=5
|
||||
stderr_logfile_backups=5
|
||||
stdout_events_enabled=true
|
||||
stderr_events_enabled=true
|
||||
stderr_events_enabled=true
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user