You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ds...@apache.org on 2022/07/29 20:35:36 UTC

[airflow] branch main updated: Reword dag run "upstream events" wording (#25405)

This is an automated email from the ASF dual-hosted git repository.

dstandish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 703a48d6eb Reword dag run "upstream events" wording (#25405)
703a48d6eb is described below

commit 703a48d6eb8665c8b38ded44e2b9a0900d215368
Author: Daniel Standish <15...@users.noreply.github.com>
AuthorDate: Fri Jul 29 13:35:25 2022 -0700

    Reword dag run "upstream events" wording (#25405)
    
    The language "updates to" doesn't make sense in this context.  Simplified a bit further, too.
---
 airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx b/airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx
index 8dbc02794c..fcafb30304 100644
--- a/airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx
+++ b/airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx
@@ -69,7 +69,7 @@ const UpstreamEvents = ({ runId }: Props) => {
   return (
     <Box mt={3} flexGrow={1}>
       <Heading size="md">Upstream Dataset Events</Heading>
-      <Text>Updates to the upstream datasets since the last dataset-triggered DAG run</Text>
+      <Text>Dataset events that triggered this DAG run.</Text>
       <Table
         data={data}
         columns={columns}