code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/components/Seo.jsx b/src/components/Seo.jsx @@ -17,7 +17,7 @@ const query = graphql`
edges {
node {
childImageSharp {
- fixed {
+ original {
src
}
}
@@ -125,7 +125,7 @@ const SEO = ({ title, description, slug, article }) => (
render={data => {
const siteMeta = data.site.siteMetadata
const shareImage =
... | 4 |
diff --git a/src/util.js b/src/util.js @@ -225,7 +225,9 @@ function freeze (value) {
function getDateFromValidDateString (format, string) {
const date = new Date(string);
const isoDate = date.toISOString();
- const match = rx[format].exec(isoDate);
+ const match = format === 'date'
+ ? rx.date.exec(isoDate.substring(0,... | 1 |
diff --git a/src/accessibility.js b/src/accessibility.js @@ -12,10 +12,7 @@ export default function addSVGAccessibilityFields(yy_parser, svg, id) {
if (typeof svg.insert == 'undefined') {
return;
}
- let title_string = '';
- if (yy_parser.getTitle !== undefined) {
- title_string = yy_parser.getTitle();
- }
+ let title_... | 13 |
diff --git a/src/components/Trilemma.js b/src/components/Trilemma.js @@ -54,9 +54,9 @@ const Text = styled.text`
fill: ${(props) =>
props.isActive
? props.theme.colors.primary400
- : props.theme.colors.text300};
+ : props.theme.colors.text200};
font-weight: ${(props) => (props.isActive ? 700 : 500)};
- opacity: ${(prop... | 7 |
diff --git a/generators/client/templates/react/src/main/webapp/app/app.tsx.ejs b/generators/client/templates/react/src/main/webapp/app/app.tsx.ejs @@ -22,7 +22,7 @@ import 'app/config/dayjs.ts';
import React, { useEffect } from 'react';
import { Card } from 'reactstrap';
-import { BrowserRouter as Router } from 'react-... | 2 |
diff --git a/lib/assets/core/javascripts/cartodb3/editor.js b/lib/assets/core/javascripts/cartodb3/editor.js @@ -376,6 +376,7 @@ Backbone.history.start({ pushState: true, hashChange: false, root: rootLocation
var editorTabPaneView = createEditorMenuTabPane([
{
icon: 'pencilMenu',
+ name: 'editor',
tooltip: 'edit-map',
... | 1 |
diff --git a/lib/apollo/apolloClient.ts b/lib/apollo/apolloClient.ts @@ -26,6 +26,9 @@ type Options = {
}
function mergeExistingData(existing, incoming) {
+ // Null values should be overwritten by the incoming value
+ if (!existing) return incoming
+
return { ...existing, ...incoming }
}
| 9 |
diff --git a/lib/oauth/authenticator.js b/lib/oauth/authenticator.js var ApiAuthRequestError = require('../error/ApiAuthRequestError');
var JwtAuthenticator = require('../jwt/jwt-authenticator');
+var ScopeFactoryAuthenticator = require('../oauth/scope-factory-authenticator');
var OAuthPasswordGrantRequestAuthenticator... | 7 |
diff --git a/accessibility-checker-extension/src/ts/devtools/DevToolsPanelApp.tsx b/accessibility-checker-extension/src/ts/devtools/DevToolsPanelApp.tsx @@ -442,7 +442,7 @@ export default class DevToolsPanelApp extends React.Component<IPanelProps, IPane
getItem = {this.getItem.bind(this)}
learnItem={this.state.learnIte... | 12 |
diff --git a/src/components/DayPickerRangeController.jsx b/src/components/DayPickerRangeController.jsx @@ -490,6 +490,7 @@ export default class DayPickerRangeController extends React.PureComponent {
if (startDateOffset || endDateOffset) {
startDate = getSelectedDateOffset(startDateOffset, day);
endDate = getSelectedDat... | 5 |
diff --git a/front/src/routes/integration/all/rtsp-camera/actions.js b/front/src/routes/integration/all/rtsp-camera/actions.js @@ -39,10 +39,10 @@ function createActions(store) {
if (state.rtspCameraSearch && state.rtspCameraSearch.length) {
options.search = state.rtspCameraSearch;
}
- let rtspCameras = await state.htt... | 1 |
diff --git a/src/lib/notifications/backgroundFetch.native.js b/src/lib/notifications/backgroundFetch.native.js @@ -24,7 +24,7 @@ const options = {
periodic: true,
}
-const DEFAULT_TASK = 'BackgroundFetch'
+const DEFAULT_TASK = 'react-native-background-fetch'
const defaultTaskProcessor = noopAsync
const log = logger.chi... | 0 |
diff --git a/packages/inertia/src/modal.js b/packages/inertia/src/modal.js @@ -3,6 +3,10 @@ export default {
listener: null,
show(html) {
+ if (typeof html === 'object') {
+ html = `All Inertia.js requests must receive a valid Inertia.js response, however a return plain JSON response was received.<hr>${JSON.stringify(h... | 7 |
diff --git a/src/serialize/window.js b/src/serialize/window.js @@ -67,12 +67,12 @@ function getSerializedWindow(winPromise : ZalgoPromise<CrossDomainWindowType>, {
return isWindowClosed(win);
}),
setLocation: (href) => winPromise.then(win => {
- if (href.indexOf('/') === 0) {
- href = `${ window.location.protocol }//${... | 11 |
diff --git a/bin/local-env/install-wordpress.sh b/bin/local-env/install-wordpress.sh @@ -42,14 +42,6 @@ echo -e $(status_message "Installing WordPress...")
# prevents permissions errors. See: https://github.com/WordPress/gutenberg/pull/8427#issuecomment-410232369
docker-compose $DOCKER_COMPOSE_FILE_OPTIONS run --rm -u ... | 2 |
diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md @@ -7,8 +7,8 @@ For general software-industry styles and terminology, see the [Microsoft Writing
## Voice
* Address the reader directly: "you". Use "we" only for Auth0's recommendations.
-* Use active voice.
-* For instructions, use imperative mood.
+* Use the active voice.
+*... | 1 |
diff --git a/src/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.ts b/src/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.ts @@ -3,7 +3,7 @@ import {
HostListener,
Input,
Renderer2,
- AfterContentInit,
+ AfterContentInit
} from '@angular/co... | 9 |
diff --git a/includes/Modules/Idea_Hub.php b/includes/Modules/Idea_Hub.php @@ -24,7 +24,6 @@ use Google\Site_Kit\Core\Assets\Script;
use Google\Site_Kit\Core\REST_API\Exception\Invalid_Datapoint_Exception;
use Google\Site_Kit\Core\REST_API\Data_Request;
use Google\Site_Kit\Core\Storage\Post_Meta;
-use Google\Site_Kit\C... | 11 |
diff --git a/build/transpile.js b/build/transpile.js @@ -702,7 +702,9 @@ class Transpiler {
if (this.areCapabilitiesAlreadySorted(capabilities)) {
return null;
}
- capabilities.sort ();
+ capabilities.sort(function (a, b) {
+ return a.localeCompare(b);
+ });
const orderedCapabilities = capabilities.join (lineBreak);
co... | 1 |
diff --git a/lib/gateway/Shard.js b/lib/gateway/Shard.js @@ -585,7 +585,7 @@ class Shard extends EventEmitter {
break;
}
/**
- * Fired when someone removes a reaction from a message
+ * Fired when all reactions are removed from a message
* @event Client#messageReactionRemoveAll
* @prop {Message | Object} message The me... | 7 |
diff --git a/vaadin-overlay.html b/vaadin-overlay.html @@ -72,10 +72,10 @@ This program is available under Apache License Version 2.0, available at https:/
}
_assignTemplate() {
- var template = this.$.slot.assignedNodes({
+ var templates = this.$.slot.assignedNodes({
flatten: true
- }).find(node => node.localName && n... | 14 |
diff --git a/core/block_render_svg.js b/core/block_render_svg.js @@ -967,12 +967,12 @@ Blockly.BlockSvg.prototype.renderDrawRight_ = function(steps, highlightSteps,
highlightInlineSteps.push('h', Blockly.BlockSvg.TAB_WIDTH - 2 -
input.renderWidth);
// Short highlight glint at bottom of tab.
- highlightInlineSteps.push(... | 2 |
diff --git a/html/components/tabs.stories.js b/html/components/tabs.stories.js @@ -13,7 +13,7 @@ export default {
},
};
-export const defaultTabs = () => {
+export const defaultStory = () => {
useEffect(() => {
tabs();
}, []);
@@ -102,6 +102,6 @@ export const defaultTabs = () => {
</div>`;
};
-defaultTabs.story = {
+de... | 3 |
diff --git a/lib/dependencies/DepBlockHelpers.js b/lib/dependencies/DepBlockHelpers.js @@ -18,11 +18,14 @@ DepBlockHelpers.getLoadDepBlockWrapper = (depBlock, outputOptions, requestShorte
DepBlockHelpers.getDepBlockPromise = (depBlock, outputOptions, requestShortener, name) => {
if(depBlock.chunks) {
const chunks = dep... | 5 |
diff --git a/app/controllers/copy_controller.js b/app/controllers/copy_controller.js @@ -132,7 +132,10 @@ function handleCopyFrom () {
let copyFromStream = copyFrom(sql);
const pgstream = client.query(copyFromStream);
pgstream
- .on('error', next)
+ .on('error', err => {
+ req.unpipe(pgstream);
+ return next(err);
+ })... | 9 |
diff --git a/src/app/api/api.version.js b/src/app/api/api.version.js -import packageJson from 'package-json';
+import url from 'url';
+import registryUrl from 'registry-url';
+import registryAuthToken from 'registry-auth-token';
+import request from 'superagent';
+import pkg from '../../package.json';
export const getL... | 4 |
diff --git a/docs/content/charts/MouseTracker.js b/docs/content/charts/MouseTracker.js @@ -58,7 +58,16 @@ export const MouseTrackerPage = <cx>
y: <NumericAxis min={0} max={100} vertical/>,
}}>
<Gridlines />
- <MouseTracker x-bind="$page.cursor.x" y-bind="$page.cursor.y">
+ <MouseTracker
+ x-bind="$page.cursor.x"
+ y-bi... | 0 |
diff --git a/docs/services/ComponentOrchestrator.md b/docs/services/ComponentOrchestrator.md # Introduction
-The two services scheduler and resource coordinator are responsible for a fair resource distribution and a periodical execution of integration flows.
+The service component orchestrator is responsible for a fair... | 10 |
diff --git a/.github/workflows/Publish_to_Github_Pages.yml b/.github/workflows/Publish_to_Github_Pages.yml @@ -25,16 +25,6 @@ jobs:
SIZE=$(du -s -B 1 app_web/dist/ | cut -f 1)
if [[ $SIZE -gt 1073741824 ]]; then echo 'dist folder exceeds limit of 1GB! Aborting'; exit 1; fi
- - name: Deploy to Khronos repo
- continue-on... | 2 |
diff --git a/ios/NewExpensify.xcodeproj/project.pbxproj b/ios/NewExpensify.xcodeproj/project.pbxproj );
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-NewExpensify-NewExpensifyTests/Pods-NewExpensify-NewExpensifyTests-frameworks.sh",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.f... | 13 |
diff --git a/test-complete/nodejs-documents-query-stream.js b/test-complete/nodejs-documents-query-stream.js @@ -159,6 +159,28 @@ describe('Document query stream test', function(){
done();
}, done);
});
+
+ it('should do collections query', function(done) {
+ var count = 0;
+ var str = '';
+ var chunks = [];
+ db.docum... | 0 |
diff --git a/articles/multifactor-authentication/mfa-native/index.md b/articles/multifactor-authentication/mfa-native/index.md ---
-title: MFA on a Resource Owner endpoint
+title: Multifactor Authentication for Native Applications
description: How to enable your native iOS or Android app to use Multifactor Authenticati... | 3 |
diff --git a/physics-manager.js b/physics-manager.js @@ -25,8 +25,8 @@ const physicsManager = new EventTarget();
const velocity = new THREE.Vector3();
physicsManager.velocity = velocity;
-const offset = new THREE.Vector3();
-physicsManager.offset = offset;
+// const offset = new THREE.Vector3();
+// physicsManager.offs... | 2 |
diff --git a/lib/plugins/aws/invokeLocal/index.js b/lib/plugins/aws/invokeLocal/index.js @@ -20,9 +20,10 @@ class AwsInvokeLocal {
Object.assign(this, validate);
this.hooks = {
- 'invoke:local:invoke': () => BbPromise.bind(this)
+ 'before:invoke:local:loadEnvVars': () => BbPromise.bind(this)
.then(this.extendedValidate... | 12 |
diff --git a/server/db/DBManager.js b/server/db/DBManager.js @@ -107,7 +107,9 @@ class DBManager {
// Add counterHistory when somethings counted
if(counterEntry.length > 0) {
- itemsToAdd['counterHistory'] = counterEntry;
+ itemsToAdd['counterHistory'] = {
+ $each: counterEntry
+ }
updateRequest['$push'] = itemsToAdd;
... | 1 |
diff --git a/src/widgets/histogram/chart.js b/src/widgets/histogram/chart.js @@ -162,7 +162,6 @@ module.exports = cdb.core.View.extend({
});
}
- // This should match the one on _default.css
if (grandParent && grandParent.outerWidth && this._isTabletViewport()) {
width -= grandParent.outerWidth(true) - grandParent.width... | 2 |
diff --git a/guide/english/blockchain/index.md b/guide/english/blockchain/index.md @@ -42,7 +42,7 @@ the consensus of the other nodes. Bitcoin has the benefit of being able to incen
#### Sources
-1. [Bettina Warburg, "How the blockchain will radically transform the economy", *TED Talks*, December 8, 2016](https://youtu... | 7 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,30 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.54.2] -- 2020-06-10
+### Changed
+ - Bump `regl` dependency to v1.6.1 [#4881]
+ - Bump `ndarray` dependency to v1.0.19 [#4910]
+ - Bump... | 3 |
diff --git a/src/screens/transfer/screen/powerDownScreen.js b/src/screens/transfer/screen/powerDownScreen.js /* eslint-disable react/no-unused-state */
import React, { Fragment, Component } from 'react';
import { Text, View, ScrollView, Alert } from 'react-native';
-import ActionSheet from 'react-native-actionsheet';
i... | 14 |
diff --git a/pages/tutorials/Gulp.md b/pages/tutorials/Gulp.md This quick start guide will teach you how to build TypeScript with [gulp](http://gulpjs.com) and then add [Browserify](http://browserify.org), [uglify](http://lisperator.net/uglifyjs/), or [Watchify](https://github.com/substack/watchify) to the gulp pipelin... | 7 |
diff --git a/contracts/Proxy.sol b/contracts/Proxy.sol @@ -110,12 +110,6 @@ contract Proxyable is Owned {
_;
}
- modifier onlyOwner_Proxy
- {
- require(messageSender == owner);
- _;
- }
-
modifier optionalProxy
{
if (Proxy(msg.sender) != proxy) {
| 2 |
diff --git a/src/actions/event-filters.js b/src/actions/event-filters.js // @flow
import type { DateRange, Time } from "../data/date-time";
+import type { Area } from "../data/event-filters";
import type { StandardAction } from "./";
type EventFiltersActionType =
@@ -8,9 +9,13 @@ type EventFiltersActionType =
| "CLEAR_... | 0 |
diff --git a/src/connectors/soundcloud.js b/src/connectors/soundcloud.js @@ -44,5 +44,5 @@ Connector.isPlaying = () => $('.playControl').hasClass('playing');
Connector.applyFilter(MetadataFilter.getYoutubeFilter());
function getDurationOrRemainingTime() {
- return Util.stringToSeconds(Util.getTextFromSelectors(duration... | 4 |
diff --git a/app/components/Account/AccountAssetUpdate.jsx b/app/components/Account/AccountAssetUpdate.jsx @@ -21,10 +21,10 @@ import {BitAssetOptions} from "./AccountAssetCreate";
import assetConstants from "chain/asset_constants";
import AssetWhitelist from "./AssetWhitelist";
import AssetFeedProducers from "./AssetF... | 14 |
diff --git a/ReviewQueueHelper.user.js b/ReviewQueueHelper.user.js @@ -92,6 +92,28 @@ function getCloseVotesQuota(viewablePostId = 1) {
.fail(reject);
});
}
+
+/**
+ * @summary requests and parses a list of post ids from /questions page
+ * @returns {Promise<number[]>}
+ */
+const getFirstQuestionPagePostIds = async ()... | 7 |
diff --git a/webpack.config.vendor.js b/webpack.config.vendor.js @@ -56,7 +56,10 @@ module.exports = (env) => {
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }),
new UglifyJSPlugin({ sourceMap: true, uglifyOptions: { ecma: 8 } }),
new webpack.NormalModuleReplacementPlugin(/\/iconv-loader$/, require.resolve(... | 12 |
diff --git a/source/io/sniffContentType.js b/source/io/sniffContentType.js @@ -9,6 +9,7 @@ const sniffContentType = (type, name) => {
break;
case 'application/x-any': // Garbage created by JAVA mail (I think)
case 'application/word': // Seen in the wild for a PDF
+ case 'application/binary': // Seen in the wild for a P... | 0 |
diff --git a/src/program/document.imba b/src/program/document.imba @@ -49,8 +49,8 @@ export class ImbaDocument
def getText range = null
if range
- var start = offsetAt(range.start)
- var end = offsetAt(range.end)
+ let start = offsetAt(range.start)
+ let end = offsetAt(range.end)
return content.substring(start, end)
re... | 10 |
diff --git a/docs/_sass/main.scss b/docs/_sass/main.scss &-item {
background-color: rgba(siimple-default-color("light"), 0.3);
&:hover {
- background-color: $siimple-default-white;
+ background-color: $siimple-default-white !important;
}
}
&--selected {
| 1 |
diff --git a/sirepo/package_data/static/js/sirepo-components.js b/sirepo/package_data/static/js/sirepo-components.js @@ -1699,23 +1699,26 @@ SIREPO.app.directive('fileModel', ['$parse', function ($parse) {
}]);
SIREPO.app.directive('bootstrapToggle', function($timeout) {
- var thisToggle;
+ function getToggle(scope) {
... | 1 |
diff --git a/src/CONST.js b/src/CONST.js @@ -455,7 +455,7 @@ const CONST = {
EMOJI_FREQUENT_ROW_COUNT: 3,
- EMOJI_INVISIBLE_CODEPOINTS: ['fe0f', '200d'],
+ EMOJI_INVISIBLE_CODEPOINTS: ['fe0f', '200d', '2066'],
TOOLTIP_MAX_LINES: 3,
| 8 |
diff --git a/services/data-hub/src/routes/data/controller.ts b/services/data-hub/src/routes/data/controller.ts @@ -173,7 +173,7 @@ export default class DataController {
const handleDocument = (error, doc) => {
- if(!error) {
+ if(error) {
console.debug('Error:', error);
return false;
}
| 1 |
diff --git a/wiki/Manual.md b/wiki/Manual.md @@ -3514,11 +3514,13 @@ $exchange->withdraw ($code, $amount, $address, array( 'tag' => tag, 'network' ->
The following aliases of `network` allow for withdrawing crypto on multiple chains
-|BSC|BEP20|
-|BNB|BEP2 |
+| Currency | Network |
+|:---:|:---:|
| ETH | ERC20 |
| TRX ... | 1 |
diff --git a/package.json b/package.json "backstopjs:init": "backstop init --config=backstop.js",
"travis:backstopjs": "backstop test --config=backstop-travis.js --docker",
"screenshot": "storybook-chrome-screenshot -p 9001 -c .storybook",
- "lint": "npm run lint:js && npm run lint:php && npm run lint:css",
+ "lint": "... | 2 |
diff --git a/karma.conf.js b/karma.conf.js @@ -27,8 +27,12 @@ module.exports = function (config) {
bundlerOptions: {
entrypoints: /\.spec\.js$/,
transforms: [
- require("karma-typescript-es6-transform")()
- ]
+ require('karma-typescript-es6-transform')()
+ ],
+ exclude: [
+ 'node_modules'
+ ],
+ addNodeGlobals: false
}... | 3 |
diff --git a/src/modules/tooltip/Tooltip.js b/src/modules/tooltip/Tooltip.js @@ -495,7 +495,10 @@ export default class Tooltip {
return
}
- if (Array.isArray(this.tConfig.enabledOnSeries)) {
+ if (
+ Array.isArray(this.tConfig.enabledOnSeries) &&
+ !w.config.tooltip.shared
+ ) {
const index = parseInt(opt.paths.getAttr... | 1 |
diff --git a/packages/node_modules/@node-red/editor-client/src/sass/diff.scss b/packages/node_modules/@node-red/editor-client/src/sass/diff.scss @@ -567,9 +567,15 @@ ul.node-dialog-configm-deploy-list {
td.lineno {
font-family: monospace;
text-align: right;
- color: #aaa;
+ color: #999;
background: #f6f6f6;
padding: 1p... | 7 |
diff --git a/docs/concepts.md b/docs/concepts.md @@ -25,7 +25,7 @@ React Static also has a very unique and amazing way of requesting the least amou
### Shared Route Data (Advanced)
-**Most projects don't need shared route data**. There are cases where it won't make sense to place an individual copy of the same piece of... | 1 |
diff --git a/accessibility-checker/src/README.md b/accessibility-checker/src/README.md @@ -143,7 +143,7 @@ module.exports = {
### Command-line
-The module provides some basic command-line utilities that will allow you to scan files, directories, or URLs. Create a .txt file with path(s) to files, directories or a list o... | 3 |
diff --git a/package.json b/package.json "PEG"
],
"homepage": "https://pegjs.org/",
- "bugs": "https://github.com/pegjs/pegjs/issues",
+ "repository": "pegjs/pegjs",
"license": "MIT",
"contributors": [
"David Majda <david@majda.cz> (https://majda.cz/)",
"types": "lib/typings/pegjs.d.ts",
"main": "lib/peg.js",
"bin": "b... | 5 |
diff --git a/wdio.conf.js b/wdio.conf.js @@ -23,8 +23,7 @@ exports.config = {
`./test/journeys/specs/tap/**/*.js`
],
oneOnOne: [
- // `./test/journeys/specs/oneOnOne/**/*.js`
- `./test/journeys/specs/oneOnOne/messaging.js`
+ `./test/journeys/specs/oneOnOne/**/*.js`
],
space: [
`./test/journeys/specs/space/**/*.js`
| 13 |
diff --git a/docs/source/styles/opacity.blade.md b/docs/source/styles/opacity.blade.md @@ -55,49 +55,6 @@ title: "Opacity"
</table>
</div>
-
-
-
-<!-- <div class="bg-smoke-lighter px-4 py-2 border-2 border-smoke rounded">
- <table class="font-mono text-sm text-grey-darkest">
- <tr>
- <td class="text-purple-dark pr-4">.... | 2 |
diff --git a/packages/app/test/integration/setup-crowi.js b/packages/app/test/integration/setup-crowi.js +import { Server } from 'http';
+
import Crowi from '~/server/crowi';
let _instance = null;
@@ -7,6 +9,7 @@ const initCrowi = async(crowi) => {
await crowi.setupConfigManager();
await crowi.setupSocketIoService();
+... | 7 |
diff --git a/src/client/vivide/components/vivide-tree-widget.js b/src/client/vivide/components/vivide-tree-widget.js @@ -76,25 +76,24 @@ export default class VivideTreeWidget extends VivideMultiSelectionWidget {
if (tooltipText.length > 0) {
let tooltip = <span class="tooltip"></span>;
+ let shownTooltip = null;
toolti... | 7 |
diff --git a/src/containers/FlightDirector/SimulatorConfig/config/Library.js b/src/containers/FlightDirector/SimulatorConfig/config/Library.js @@ -14,6 +14,7 @@ import {
} from "reactstrap";
import { paramCase } from "change-case";
import FontAwesome from "react-fontawesome";
+import SubscriptionHelper from "../../../.... | 7 |
diff --git a/src/commands/login.js b/src/commands/login.js @@ -23,7 +23,7 @@ class LoginCommand extends Command {
LoginCommand.description = `Login to your Netlify account
-Opens a web browser to acquire an OAuth token. Use NETLIFY_WEB_UI to set the base URL of the ticket URL.
+Opens a web browser to acquire an OAuth t... | 2 |
diff --git a/lib/assets/core/javascripts/cartodb3/components/form-components/editors/fill/input-color/input-categories/input-color-categories.js b/lib/assets/core/javascripts/cartodb3/components/form-components/editors/fill/input-color/input-categories/input-color-categories.js @@ -36,7 +36,7 @@ module.exports = CoreVi... | 5 |
diff --git a/test/HiGlassComponentTest.jsx b/test/HiGlassComponentTest.jsx @@ -2,6 +2,9 @@ import {
mount,
render
} from 'enzyme';
+import {
+ scalesCenterAndK
+} from '../app/scripts/utils.js';
import { expect } from 'chai';
import {scaleLinear} from 'd3-scale';
import React from 'react';
@@ -29,7 +32,7 @@ let heatmap... | 12 |
diff --git a/build/generateExterns.js b/build/generateExterns.js @@ -65,14 +65,14 @@ function topologicalSort(list, getDeps) {
const COMPLETELY_VISITED = 2;
// Mark all objects as not visited.
- list.forEach((object) => {
+ for (const object of list) {
object.__mark = NOT_VISITED;
- });
+ }
// Visit each object.
- list... | 14 |
diff --git a/vis/js/bubbles.js b/vis/js/bubbles.js @@ -450,13 +450,17 @@ BubblesFSM.prototype = {
+ '</span> ' + config.localization[config.language].intro_label_areas)
}
- $("#subdiscipline_title").dotdotdot();
+ $("#subdiscipline_title>h4").dotdotdot();
+
+ if (previous_zoom_node === null) {
$("#context").css("visibi... | 1 |
diff --git a/README.md b/README.md @@ -160,13 +160,18 @@ Solidity/Serpent files in the contracts directory will automatically be deployed
Libraries and languages available
======
-Embark can build and deploy contracts coded in Solidity. It will make them available on the client side using EmbarkJS and Web3.js.
+Embark ... | 3 |
diff --git a/OpenRobertaServer/staticResources/js/app/simulation/simulationLogic/scene.js b/OpenRobertaServer/staticResources/js/app/simulation/simulationLogic/scene.js @@ -717,7 +717,11 @@ define([ 'simulation.simulation', 'simulation.math', 'util', 'interpreter.consta
values.display.pixel = this.robots[r].display.led... | 1 |
diff --git a/legacy.js b/legacy.js @@ -52,6 +52,7 @@ module.exports = function (db, flumedb) {
pl.old(logDB, stdopts(opts)),
//lookup2(keys, values, 'timestamp')
paramap(function (data, cb) {
+ if(values == false) return cb(null, {key:data.value})
var key = data.value
var seq = data.key
db.get(key, function (err, value... | 4 |
diff --git a/Source/Widgets/Viewer/Viewer.js b/Source/Widgets/Viewer/Viewer.js @@ -1963,9 +1963,6 @@ Viewer.prototype._onDataSourceAdded = function (
dataSourceCollection,
dataSource
) {
- if (this._automaticallyTrackDataSourceClocks) {
- this.clockTrackedDataSource = dataSource;
- }
var id = dataSource.entities.id;
va... | 3 |
diff --git a/token-metadata/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/metadata.json b/token-metadata/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/metadata.json "symbol": "DYT",
"address": "0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb @@ -121,14 +121,11 @@ class UsersController < ApplicationController
def delete
@observations_count = current_user.observations_count
- @helpers_count = Identification.
- select( "DISTINCT identifications.user_id" ).
- joins(:observat... | 4 |
diff --git a/README.md b/README.md @@ -108,48 +108,6 @@ In case of need authenticate without Okta preview again, execute:
unset OKTA_METADATA_URL
```
-## Running and configuring cronjobs
-
-The cronjobs use Unix's crontabs, so it doesn't run on Windows systems.
-
-If you want to run the cronjobs you need to configure t... | 2 |
diff --git a/generators/client/templates/angular/src/main/webapp/app/_polyfills.ts b/generators/client/templates/angular/src/main/webapp/app/_polyfills.ts @@ -59,22 +59,17 @@ import 'core-js/es6/set';
import 'core-js/es6/reflect';
import 'core-js/es7/reflect';
-
/**
* Required to support Web Animations `@angular/animat... | 2 |
diff --git a/public/views/splash.html b/public/views/splash.html <div class="row text-left" style="margin-top: 40px">
<div class="start-button large-10 medium-10 small-10 medium-centered small-centered large-centered columns">
- <label><span class="text-white size-14" translate>Please choose the type of this wallet</sp... | 10 |
diff --git a/priv/public/ui/app/mn_admin/mn_logs/collect_info/mn_logs_collect_info_service.js b/priv/public/ui/app/mn_admin/mn_logs/collect_info/mn_logs_collect_info_service.js task.nodesByStatus = nodesByStatus;
task.nodeErrors = nodeErrors;
+ task.logRedactionLevel = logRedaction && logRedaction.logRedactionLevel;
ta... | 12 |
diff --git a/test/jasmine/tests/parcoords_test.js b/test/jasmine/tests/parcoords_test.js @@ -1555,6 +1555,50 @@ describe('parcoords constraint interactions - without defined axis ranges', func
.catch(failTest)
.then(done);
});
+
+ it('@noCI @gl should keep single point dimension selected', function(done) {
+ var testLa... | 0 |
diff --git a/lib/shared/addon/components/cru-cluster/component.js b/lib/shared/addon/components/cru-cluster/component.js @@ -261,6 +261,12 @@ export default Component.extend(ViewNewEdit, ChildHook, {
preSave: true
});
+ out.push({
+ name: 'imported',
+ driver: 'import',
+ preSave: true
+ });
+
out.push({
name: 'importe... | 9 |
diff --git a/app/builtin-pages/views/library-view.js b/app/builtin-pages/views/library-view.js @@ -352,8 +352,10 @@ function renderVersionPicker () {
</div>
`
- const rDrafts = () => yo`
- <div>
+ const rDrafts = () => {
+ var els = []
+ if (draftInfo.drafts && draftInfo.drafts.length) {
+ els.push(yo`
<a href="beaker:... | 4 |
diff --git a/src/sections/General/Navigation/navigation.style.js b/src/sections/General/Navigation/navigation.style.js @@ -102,7 +102,7 @@ const NavigationWrap = styled.header`
display: flex;
flex-direction: column;
position: relative;
- padding: 3em;
+ padding: 1.5em;
border-radius: 50px 0 0 50px;
.sub-item {
padding:... | 7 |
diff --git a/yarn.lock b/yarn.lock @@ -4445,7 +4445,7 @@ ethereumjs-abi@0.6.5:
bn.js "^4.10.0"
ethereumjs-util "^4.3.0"
-ethereumjs-abi@^0.6.5, ethereumjs-abi@^0.6.7, ethereumjs-abi@^0.6.8:
+ethereumjs-abi@^0.6.5, ethereumjs-abi@^0.6.7:
version "0.6.8"
resolved "https://registry.yarnpkg.com/ethereumjs-abi/-/ethereumjs-... | 3 |
diff --git a/.github/VISION.md b/.github/VISION.md @@ -74,5 +74,8 @@ Thanks for your support!
4. use data fields: each store should exactly use one instance of data.Model. Inside a model, you can define fields.
Fields should either be a singleton or a class with static methods. We need to provide parsing methods, e.g. ... | 12 |
diff --git a/factory-ai-vision/EdgeSolution/modules/WebModule/backend/vision_on_edge/streams/api/views.py b/factory-ai-vision/EdgeSolution/modules/WebModule/backend/vision_on_edge/streams/api/views.py @@ -47,7 +47,10 @@ if "runserver" in sys.argv:
method="get",
manual_parameters=[
openapi.Parameter(
- "rtsp", openapi.I... | 4 |
diff --git a/converters/fromZigbee.js b/converters/fromZigbee.js @@ -14,7 +14,7 @@ const battery3V = {
max: 3000,
};
-const occupancyTimeout = 60; // In seconds
+const occupancyTimeout = 90; // In seconds
const toPercentage = (value, min, max) => {
if (value > max) {
| 12 |
diff --git a/src/components/EditableTextarea/EditableTextarea.tsx b/src/components/EditableTextarea/EditableTextarea.tsx @@ -98,8 +98,6 @@ export class EditableTextarea extends React.PureComponent<
}
componentWillReceiveProps(nextProps) {
- if (nextProps.value === this.props.value) return
-
// Tested
/* istanbul ignore... | 11 |
diff --git a/src/components/StackedAreaChart/StackedAreaChart.js b/src/components/StackedAreaChart/StackedAreaChart.js @@ -24,13 +24,13 @@ function StackedAreaChart() {
<YAxis />
<CartesianGrid strokeDasharray="3 3" />
<Tooltip />
- <Area type='monotone' dataKey='Public Safety' stackId="1" stroke='#329f7c' fill='#329f7... | 3 |
diff --git a/src/containers/sound-editor.jsx b/src/containers/sound-editor.jsx @@ -86,6 +86,10 @@ class SoundEditor extends React.Component {
// Ignore keyboard shortcuts if a text input field is focused
return;
}
+ if (this.props.isFullScreen) {
+ // Ignore keyboard shortcuts if the stage is fullscreen mode
+ return;
... | 8 |
diff --git a/webpack.config.js b/webpack.config.js @@ -285,10 +285,6 @@ const webpackConfig = ( env, argv ) => {
'googlesitekit-i18n': './assets/js/googlesitekit-i18n.js',
// Analytics advanced tracking script to be injected in the frontend.
'analytics-advanced-tracking': './assets/js/analytics-advanced-tracking.js',
-... | 2 |
diff --git a/components/Components/serverless.js b/components/Components/serverless.js @@ -30,6 +30,8 @@ class Components extends Component {
const graph = createGraph(preparedComponents, vars)
+ this.cli.status(`${Object.keys(preparedComponents).length} Components Loaded`)
+
// TODO: update to process nodes in paralle... | 7 |
diff --git a/etc/src/foreach.js b/etc/src/foreach.js // Run a build command on a selection of modules
-const {each, extend, filter, initial, last, map, pairs } = require('underscore');
+const {each, extend, filter, initial, last, pairs } = require('underscore');
const path = require('path');
const util = require('util'... | 14 |
diff --git a/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-update.tsx.ejs b/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-update.tsx.ejs @@ -143,9 +143,6 @@ export interface I<%= entityReactName %>UpdateState {
<%_ relFieldNames.forEach(val => { _%>
<%= val.... | 2 |
diff --git a/scenes/shadows.scn b/scenes/shadows.scn },
{
"position": [
- 8.4,
- -1.74,
- -5.49
+ -2,
+ -0.15,
+ 10
],
"quaternion": [
0,
- 0.7071067811865475,
+ 1,
0,
- 0.7071067811865475
+ 0
],
- "physics": false,
- "start_url": "/avatars/gear.vrm",
- "dynamic": true
+ "start_url": "https://webaverse.github.io/sprite... | 0 |
diff --git a/content/questions/reduce-object/index.md b/content/questions/reduce-object/index.md @@ -25,9 +25,9 @@ console.log(result);
<!-- explanation -->
-`Object.values` iterates through enumerable number keys in sequential order. This is the reason why the letters appear to sort themselves correctly.
+`Object.valu... | 0 |
diff --git a/src/Components/SchemaDotOrg/dataFromBlogPost.js b/src/Components/SchemaDotOrg/dataFromBlogPost.js import truncate from 'lodash/truncate';
+import dataFromAuthor from './dataFromAuthor';
import formatDate from '../../utils/formatDate';
import urlFromBinary from '../../utils/urlFromBinary';
import { textExtr... | 4 |
diff --git a/_includes/ecosystem.html b/_includes/ecosystem.html <a style="font-size:.9em;padding-top:5px;padding-bottom:45px;
min-width:240px;max-width:300px; width:100%"
class="waves-effect waves-dark btn white-text darken-2 l5-light-blue z-depth-4"
- href="https://github.com/layer5io/service-mesh-performance-specifi... | 3 |
diff --git a/package.json b/package.json "devDependencies": {
"@laconia/test-helper": "file:packages/laconia-test-helper",
"@types/jest": "^24.0.11",
- "@types/node": "8.10.53",
+ "@types/node": "~8.10.53",
"aws-event-mocks": "^0.0.0",
"aws-sdk": "^2.432.0",
"aws-sdk-mock": "^4.3.0",
| 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.